[Freeswitch-trunk] [commit] r12736 - in freeswitch/trunk/libs/sofia-sip: . libsofia-sip-ua/nta
FreeSWITCH SVN
mikej at freeswitch.org
Tue Mar 24 08:36:03 PDT 2009
Author: mikej
Date: Tue Mar 24 10:36:03 2009
New Revision: 12736
Log:
Thu Mar 5 13:06:15 CST 2009 Pekka Pessi <first.last at nokia.com>
* check_nta: use S2_CASE()
Ignore-this: c94d4219b0882f1343bcfc56f975ea48
Modified:
freeswitch/trunk/libs/sofia-sip/.update
freeswitch/trunk/libs/sofia-sip/libsofia-sip-ua/nta/check_nta_client.c
Modified: freeswitch/trunk/libs/sofia-sip/.update
==============================================================================
--- freeswitch/trunk/libs/sofia-sip/.update (original)
+++ freeswitch/trunk/libs/sofia-sip/.update Tue Mar 24 10:36:03 2009
@@ -1 +1 @@
-Tue Mar 24 10:33:24 CDT 2009
+Tue Mar 24 10:35:04 CDT 2009
Modified: freeswitch/trunk/libs/sofia-sip/libsofia-sip-ua/nta/check_nta_client.c
==============================================================================
--- freeswitch/trunk/libs/sofia-sip/libsofia-sip-ua/nta/check_nta_client.c (original)
+++ freeswitch/trunk/libs/sofia-sip/libsofia-sip-ua/nta/check_nta_client.c Tue Mar 24 10:36:03 2009
@@ -95,7 +95,7 @@
struct message *request;
struct event *response;
- s2_case("2.0.0", "Send MESSAGE",
+ S2_CASE("2.0.0", "Send MESSAGE",
"Basic non-INVITE transaction with outbound proxy");
orq = nta_outgoing_tcreate(s2->default_leg,
@@ -123,7 +123,7 @@
struct message *request;
struct event *response;
- s2_case("2.0.0", "Send MESSAGE",
+ S2_CASE("2.0.0", "Send MESSAGE",
"Basic non-INVITE transaction with "
"numeric per-transaction outbound proxy");
@@ -155,7 +155,7 @@
char payload[2048];
- s2_case("2.0.2", "Send MESSAGE",
+ S2_CASE("2.0.2", "Send MESSAGE",
"Basic non-INVITE transaction exceeding "
"default path MTU (1300 bytes)");
@@ -210,7 +210,7 @@
char payload[2048];
- s2_case("2.1.0", "Try UDP after trying with TCP",
+ S2_CASE("2.1.0", "Try UDP after trying with TCP",
"TCP connect() is refused");
memset(payload, 'x', sizeof payload);
@@ -279,7 +279,7 @@
char payload[2048];
- s2_case("2.1.1", "Try UDP after trying with TCP",
+ S2_CASE("2.1.1", "Try UDP after trying with TCP",
"TCP connect() times out");
memset(payload, 'x', sizeof payload);
@@ -337,7 +337,7 @@
struct event *response;
url_t udpurl[1];
- s2_case("2.1.2", "Send MESSAGE",
+ S2_CASE("2.1.2", "Send MESSAGE",
"Non-INVITE transaction to TCP-only server");
client_setup_tcp_only_server();
More information about the Freeswitch-trunk
mailing list