Return-Path: Delivered-To: apmail-ws-axis-cvs-archive@www.apache.org Received: (qmail 70872 invoked from network); 6 Aug 2008 05:28:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 6 Aug 2008 05:28:39 -0000 Received: (qmail 67258 invoked by uid 500); 6 Aug 2008 05:28:38 -0000 Delivered-To: apmail-ws-axis-cvs-archive@ws.apache.org Received: (qmail 67125 invoked by uid 500); 6 Aug 2008 05:28:37 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 67116 invoked by uid 500); 6 Aug 2008 05:28:37 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 67113 invoked by uid 99); 6 Aug 2008 05:28:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Aug 2008 22:28:37 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Aug 2008 05:27:50 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id E661823889BB; Tue, 5 Aug 2008 22:28:17 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r683112 - /webservices/axis2/trunk/c/include/axis2_const.h Date: Wed, 06 Aug 2008 05:28:17 -0000 To: axis2-cvs@ws.apache.org From: supun@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080806052817.E661823889BB@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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;