Fixed ticket #65: broken pjsip-test compilation because of recent changes in transport

git-svn-id: https://svn.pjsip.org/repos/pjproject/trunk@890 74dad513-b988-da41-8d7b-12977e46ad98
diff --git a/pjsip/src/test-pjsip/transport_loop_test.c b/pjsip/src/test-pjsip/transport_loop_test.c
index c2c122e..ad6597d 100644
--- a/pjsip/src/test-pjsip/transport_loop_test.c
+++ b/pjsip/src/test-pjsip/transport_loop_test.c
@@ -37,7 +37,7 @@
 
     /* Test acquire transport. */
     status = pjsip_endpt_acquire_transport( endpt, PJSIP_TRANSPORT_LOOP_DGRAM,
-					    &addr, sizeof(addr), &loop);
+					    &addr, sizeof(addr), NULL, &loop);
     if (status != PJ_SUCCESS) {
 	app_perror("   error: loop transport is not configured", status);
 	return -20;
diff --git a/pjsip/src/test-pjsip/transport_tcp_test.c b/pjsip/src/test-pjsip/transport_tcp_test.c
index 630bd18..87ddf68 100644
--- a/pjsip/src/test-pjsip/transport_tcp_test.c
+++ b/pjsip/src/test-pjsip/transport_tcp_test.c
@@ -62,7 +62,7 @@
     /* Acquire one TCP transport. */
     status = pjsip_endpt_acquire_transport(endpt, PJSIP_TRANSPORT_TCP, 
 					   &rem_addr, sizeof(rem_addr),
-					   &tcp);
+					   NULL, &tcp);
     if (status != PJ_SUCCESS || tcp == NULL) {
 	app_perror("   Error: unable to acquire TCP transport", status);
 	return -17;
diff --git a/pjsip/src/test-pjsip/transport_udp_test.c b/pjsip/src/test-pjsip/transport_udp_test.c
index d24d862..4658e6e 100644
--- a/pjsip/src/test-pjsip/transport_udp_test.c
+++ b/pjsip/src/test-pjsip/transport_udp_test.c
@@ -61,7 +61,7 @@
     pj_sockaddr_in_init(&rem_addr, pj_cstr(&s, "1.1.1.1"), 80);
     status = pjsip_endpt_acquire_transport(endpt, PJSIP_TRANSPORT_UDP, 
 					   &rem_addr, sizeof(rem_addr),
-					   &tp);
+					   NULL, &tp);
     if (status != PJ_SUCCESS)
 	return -50;
     if (tp != udp_tp)
diff --git a/pjsip/src/test-pjsip/tsx_bench.c b/pjsip/src/test-pjsip/tsx_bench.c
index 8e2b112..002bc81 100644
--- a/pjsip/src/test-pjsip/tsx_bench.c
+++ b/pjsip/src/test-pjsip/tsx_bench.c
@@ -139,7 +139,7 @@
     pj_sockaddr_in_init(&remote, 0, 0);
     status = pjsip_endpt_acquire_transport(endpt, PJSIP_TRANSPORT_LOOP_DGRAM, 
 					   &remote, sizeof(pj_sockaddr_in),
-					   &rdata.tp_info.transport);
+					   NULL, &rdata.tp_info.transport);
     if (status != PJ_SUCCESS) {
 	app_perror("    error: unable to get loop transport", status);
 	return status;
diff --git a/pjsip/src/test-pjsip/tsx_uac_test.c b/pjsip/src/test-pjsip/tsx_uac_test.c
index b97b01a..f8899f1 100644
--- a/pjsip/src/test-pjsip/tsx_uac_test.c
+++ b/pjsip/src/test-pjsip/tsx_uac_test.c
@@ -1352,7 +1352,7 @@
 
     /* Check if loop transport is configured. */
     status = pjsip_endpt_acquire_transport(endpt, PJSIP_TRANSPORT_LOOP_DGRAM, 
-				      &addr, sizeof(addr), &loop);
+				      &addr, sizeof(addr), NULL, &loop);
     if (status != PJ_SUCCESS) {
 	PJ_LOG(3,(THIS_FILE, "  Error: loop transport is not configured!"));
 	return -10;
diff --git a/pjsip/src/test-pjsip/tsx_uas_test.c b/pjsip/src/test-pjsip/tsx_uas_test.c
index 8124b5a..e2e8716 100644
--- a/pjsip/src/test-pjsip/tsx_uas_test.c
+++ b/pjsip/src/test-pjsip/tsx_uas_test.c
@@ -1541,7 +1541,7 @@
 
     /* Check if loop transport is configured. */
     status = pjsip_endpt_acquire_transport(endpt, PJSIP_TRANSPORT_LOOP_DGRAM, 
-				      &addr, sizeof(addr), &loop);
+				      &addr, sizeof(addr), NULL, &loop);
     if (status != PJ_SUCCESS) {
 	PJ_LOG(3,(THIS_FILE, "  Error: loop transport is not configured!"));
 	return -10;