Changeset 728
- Timestamp:
- Sep 19, 2006 1:32:05 PM (18 years ago)
- Location:
- pjproject/trunk/pjsip/src/test-pjsip
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/test-pjsip/test.c
r595 r728 220 220 pj_caching_pool caching_pool; 221 221 const char *filename; 222 unsigned i,tsx_test_cnt=0;222 unsigned tsx_test_cnt=0; 223 223 struct tsx_test_param tsx_test[10]; 224 224 pj_status_t status; 225 #if INCLUDE_TSX_TEST 226 unsigned i; 225 227 pjsip_transport *tp; 226 228 pjsip_tpfactory *tpfactory; 229 #endif 227 230 int line; 228 231 -
pjproject/trunk/pjsip/src/test-pjsip/transport_test.c
r624 r728 336 336 { 337 337 if (!pj_strncmp(&rdata->msg_info.cid->id, &rt_call_id, rt_call_id.slen)) { 338 char *pos = pj_strchr(&rdata->msg_info.cid->id, '/');339 int thread_id = (*pos - '0');340 341 338 pjsip_tx_data *tdata; 342 339 pjsip_response_addr res_addr; … … 490 487 static int rt_worker_thread(void *arg) 491 488 { 492 int i , thread_id = (int)(long)arg;489 int i; 493 490 pj_time_val poll_delay = { 0, 10 }; 494 491 -
pjproject/trunk/pjsip/src/test-pjsip/tsx_uas_test.c
r563 r728 107 107 static char *TEST11_BRANCH_ID = PJSIP_RFC3261_BRANCH_ID "-UAS-Test11"; 108 108 static char *TEST12_BRANCH_ID = PJSIP_RFC3261_BRANCH_ID "-UAS-Test12"; 109 static char *TEST13_BRANCH_ID = PJSIP_RFC3261_BRANCH_ID "-UAS-Test13";109 //static char *TEST13_BRANCH_ID = PJSIP_RFC3261_BRANCH_ID "-UAS-Test13"; 110 110 111 111 #define TEST1_STATUS_CODE 200 … … 195 195 196 196 /* General timer entry to be used by tests. */ 197 static pj_timer_entry timer;197 //static pj_timer_entry timer; 198 198 199 199 /* Timer to send response via transaction. */ … … 314 314 } 315 315 316 #if 0 /* Unused for now */ 316 317 /* Timer callback to terminate transaction. */ 317 318 static void terminate_tsx_timer( pj_timer_heap_t *timer_heap, … … 339 340 pjsip_endpt_schedule_timer(endpt, &timer, &delay); 340 341 } 342 #endif 341 343 342 344 -
pjproject/trunk/pjsip/src/test-pjsip/txdata_test.c
r582 r728 338 338 * http://bugzilla.pjproject.net/show_bug.cgi?id=49 339 339 */ 340 #if INCLUDE_GCC_TEST 340 341 static int gcc_test() 341 342 { … … 401 402 return 0; 402 403 } 404 #endif 403 405 404 406 -
pjproject/trunk/pjsip/src/test-pjsip/uri_test.c
r624 r728 77 77 static pjsip_uri *create_uri33( pj_pool_t *pool ); 78 78 static pjsip_uri *create_uri34( pj_pool_t *pool ); 79 static pjsip_uri *create_uri35( pj_pool_t *pool );79 //static pjsip_uri *create_uri35( pj_pool_t *pool ); 80 80 static pjsip_uri *create_dummy( pj_pool_t *pool ); 81 81
Note: See TracChangeset
for help on using the changeset viewer.