Changeset 4898
- Timestamp:
- Aug 21, 2014 3:43:11 AM (10 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjnath/src/pjnath-test/concur_test.c
r4537 r4898 253 253 pj_assert(status == PJ_SUCCESS); 254 254 255 status = pj_ioqueue_create(pool, 512, &test_sess.stun_cfg.ioqueue);255 status = pj_ioqueue_create(pool, PJ_IOQUEUE_MAX_HANDLES, &test_sess.stun_cfg.ioqueue); 256 256 pj_assert(status == PJ_SUCCESS); 257 257 -
pjproject/trunk/pjnath/src/pjnath-test/stun_sock_test.c
r4360 r4898 361 361 destroy_client(client); 362 362 for (i=0; i<7; ++i) 363 handle_events(cfg, 50);363 handle_events(cfg, 100); 364 364 return ret; 365 365 } … … 430 430 destroy_client(client); 431 431 for (i=0; i<7; ++i) 432 handle_events(cfg, 50);432 handle_events(cfg, 100); 433 433 return ret; 434 434 } … … 797 797 destroy_client(client); 798 798 for (i=0; i<7; ++i) 799 handle_events(cfg, 50);799 handle_events(cfg, 100); 800 800 return ret; 801 801 } -
pjproject/trunk/pjsip/src/test/tsx_basic_test.c
r4537 r4898 268 268 &tsx_create_and_send_req, 269 269 "sip:user@somehost", 270 1 0000,270 15000, 271 271 1 272 272 }, … … 276 276 "sip:user@somehost", 277 277 1, 278 1 0000278 15000 279 279 }, 280 280 {
Note: See TracChangeset
for help on using the changeset viewer.