You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by sa...@apache.org on 2006/01/16 07:17:34 UTC

svn commit: r369367 - in /webservices/axis2/trunk/c/modules/core/clientapi: call.c listener_manager.c

Author: samisa
Date: Sun Jan 15 22:17:28 2006
New Revision: 369367

URL: http://svn.apache.org/viewcvs?rev=369367&view=rev
Log:
Renamed "listener" => 'receiver"

Modified:
    webservices/axis2/trunk/c/modules/core/clientapi/call.c
    webservices/axis2/trunk/c/modules/core/clientapi/listener_manager.c

Modified: webservices/axis2/trunk/c/modules/core/clientapi/call.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/clientapi/call.c?rev=369367&r1=369366&r2=369367&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/clientapi/call.c (original)
+++ webservices/axis2/trunk/c/modules/core/clientapi/call.c Sun Jan 15 22:17:28 2006
@@ -16,7 +16,7 @@
 
 #include <axis2_call.h>
 #include <axis2.h>
-#include <axis2_transport_listener.h>
+#include <axis2_transport_receiver.h>
 #include <axis2_transport_in_desc.h>
 #include <axis2_transport_out_desc.h>
 #include <listener_manager.h>
@@ -35,7 +35,7 @@
     /** timeout in milli seconds */
     long timeout_ms;
     /** transport listener */
-    axis2_transport_listener_t *transport_listener;
+    axis2_transport_receiver_t *transport_listener;
     /** transport that should be used for sending messages */
     axis2_transport_out_desc_t *sender_transport;
     /** transport that should be used for reciving messages */

Modified: webservices/axis2/trunk/c/modules/core/clientapi/listener_manager.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/clientapi/listener_manager.c?rev=369367&r1=369366&r2=369367&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/clientapi/listener_manager.c (original)
+++ webservices/axis2/trunk/c/modules/core/clientapi/listener_manager.c Sun Jan 15 22:17:28 2006
@@ -34,7 +34,7 @@
 typedef struct axis2_transport_listener_state 
 {
     int waiting_calls;
-    axis2_transport_listener_t *listener;
+    axis2_transport_receiver_t *listener;
 } axis2_transport_listener_state_t;
 
 
@@ -131,7 +131,7 @@
         axis2_transport_in_desc_t *transport_in = NULL;
         axis2_qname_t *qname = NULL;
         axis2_conf_t *conf = NULL;
-        axis2_transport_listener_t *listener = NULL;
+        axis2_transport_receiver_t *listener = NULL;
         
         qname = axis2_qname_create(env, transport, NULL, NULL);
         if (qname)