You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by sa...@apache.org on 2007/03/27 02:54:28 UTC

svn commit: r522688 - in /webservices/axis2/trunk/c: include/axis2_http_client.h modules/core/transport/http/sender/http_sender.c

Author: samisa
Date: Mon Mar 26 17:54:27 2007
New Revision: 522688

URL: http://svn.apache.org/viewvc?view=rev&rev=522688
Log:
Fixed build break on Windows

Modified:
    webservices/axis2/trunk/c/include/axis2_http_client.h
    webservices/axis2/trunk/c/modules/core/transport/http/sender/http_sender.c

Modified: webservices/axis2/trunk/c/include/axis2_http_client.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_http_client.h?view=diff&rev=522688&r1=522687&r2=522688
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_http_client.h (original)
+++ webservices/axis2/trunk/c/include/axis2_http_client.h Mon Mar 26 17:54:27 2007
@@ -201,7 +201,7 @@
      * @param client
      * @param env pointer to environment struct
      */
-    axis2_status_t AXIS2_CALL
+    AXIS2_EXTERN axis2_status_t AXIS2_CALL
     axis2_http_client_free_void_arg (void *client,
         const axis2_env_t *env);
 

Modified: webservices/axis2/trunk/c/modules/core/transport/http/sender/http_sender.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/transport/http/sender/http_sender.c?view=diff&rev=522688&r1=522687&r2=522688
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/sender/http_sender.c (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/sender/http_sender.c Mon Mar 26 17:54:27 2007
@@ -62,6 +62,24 @@
 is_safe_or_unreserve (
 	char c);
 
+static axis2_status_t
+axis2_http_sender_configure_proxy(
+    axis2_http_sender_t *sender,
+    const axis2_env_t *env,
+    axis2_msg_ctx_t *msg_ctx);
+
+static axis2_status_t 
+axis2_http_sender_configure_server_cert(
+    axis2_http_sender_t *sender,
+    const axis2_env_t *env,
+    axis2_msg_ctx_t *msg_ctx);
+
+static axis2_status_t
+axis2_http_sender_configure_key_file(
+    axis2_http_sender_t *sender,
+    const axis2_env_t *env,
+    axis2_msg_ctx_t *msg_ctx);
+
 AXIS2_EXTERN axis2_http_sender_t *AXIS2_CALL
 axis2_http_sender_create(
     const axis2_env_t *env)
@@ -778,7 +796,7 @@
     return AXIS2_SUCCESS;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+static axis2_status_t
 axis2_http_sender_configure_proxy(
     axis2_http_sender_t *sender,
     const axis2_env_t *env,
@@ -868,7 +886,7 @@
     return AXIS2_SUCCESS;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+static axis2_status_t 
 axis2_http_sender_configure_server_cert(
     axis2_http_sender_t *sender,
     const axis2_env_t *env,
@@ -909,7 +927,7 @@
     return status;
 }
 
-AXIS2_EXTERN axis2_status_t AXIS2_CALL
+static axis2_status_t
 axis2_http_sender_configure_key_file(
     axis2_http_sender_t *sender,
     const axis2_env_t *env,



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org