]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Thu Mar 5 13:06:15 CST 2009 Pekka Pessi <first.last@nokia.com>
authorMichael Jerris <mike@jerris.com>
Tue, 24 Mar 2009 15:36:03 +0000 (15:36 +0000)
committerMichael Jerris <mike@jerris.com>
Tue, 24 Mar 2009 15:36:03 +0000 (15:36 +0000)
  * check_nta: use S2_CASE()
  Ignore-this: c94d4219b0882f1343bcfc56f975ea48

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@12736 d0543943-73ff-0310-b7d9-9358b9ac24b2

libs/sofia-sip/.update
libs/sofia-sip/libsofia-sip-ua/nta/check_nta_client.c

index a6f6716c418eb51821716ea6b8a0339e41a4f093..656bcc7672b24bb0b633bca69a6ca1083b5d7c78 100644 (file)
@@ -1 +1 @@
-Tue Mar 24 10:33:24 CDT 2009
+Tue Mar 24 10:35:04 CDT 2009
index e80289f538e0802bfadb6819176a0dc4690e0b63..aec754a0ea7cfc00c26d400fdca76acb0ad0e9c0 100644 (file)
@@ -95,7 +95,7 @@ START_TEST(client_2_0_0)
   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 @@ START_TEST(client_2_0_1)
   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 @@ START_TEST(client_2_0_2)
 
   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 @@ START_TEST(client_2_1_0)
 
   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 @@ START_TEST(client_2_1_1)
 
   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 @@ START_TEST(client_2_1_2)
   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();