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 su...@apache.org on 2008/08/06 07:28:17 UTC

svn commit: r683112 - /webservices/axis2/trunk/c/include/axis2_const.h

Author: supun
Date: Tue Aug  5 22:28:17 2008
New Revision: 683112

URL: http://svn.apache.org/viewvc?rev=683112&view=rev
Log:
added the udp transport capability

Modified:
    webservices/axis2/trunk/c/include/axis2_const.h

Modified: webservices/axis2/trunk/c/include/axis2_const.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_const.h?rev=683112&r1=683111&r2=683112&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_const.h (original)
+++ webservices/axis2/trunk/c/include/axis2_const.h Tue Aug  5 22:28:17 2008
@@ -112,12 +112,13 @@
     /**
      * TRANSPORT constants
      */
-#define AXIS2_TRANSPORT_HTTP "http"
-#define AXIS2_TRANSPORT_SMTP "smtp"
-#define AXIS2_TRANSPORT_TCP "tcp"
-#define AXIS2_TRANSPORT_XMPP "xmpp"
-#define AXIS2_TRANSPORT_HTTPS "https"
-#define AXIS2_TRANSPORT_AMQP "amqp"
+#define AXIS2_TRANSPORT_HTTP	"http"
+#define AXIS2_TRANSPORT_SMTP	"smtp"
+#define AXIS2_TRANSPORT_TCP		"tcp"
+#define AXIS2_TRANSPORT_XMPP	"xmpp"
+#define AXIS2_TRANSPORT_HTTPS	"https"
+#define AXIS2_TRANSPORT_AMQP	"amqp"
+#define AXIS2_TRANSPORT_UDP		"soap.udp"
     typedef enum
     {
         AXIS2_TRANSPORT_ENUM_HTTP = 0,
@@ -126,6 +127,7 @@
         AXIS2_TRANSPORT_ENUM_XMPP,
         AXIS2_TRANSPORT_ENUM_HTTPS,
         AXIS2_TRANSPORT_ENUM_AMQP,
+		AXIS2_TRANSPORT_ENUM_UDP,
         AXIS2_TRANSPORT_ENUM_MAX
     } AXIS2_TRANSPORT_ENUMS;