- Timestamp:
- Apr 2, 2007 6:00:45 PM (18 years ago)
- Location:
- pjproject/trunk/pjnath
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjnath/include/pjnath/ice_session.h
r1126 r1129 607 607 unsigned *p_cand_id); 608 608 609 #if 0610 /* Temporarily disabled to reduce size, since we don't need this yet */611 612 609 /** 613 610 * Find default candidate for the specified component ID, using this … … 627 624 unsigned comp_id, 628 625 int *p_cand_id); 629 #endif630 626 631 627 /** -
pjproject/trunk/pjnath/src/pjnath-test/ice_test.c
r1111 r1129 460 460 pj_stun_config_init(&stun_cfg, mem, 0, ioqueue, timer_heap); 461 461 462 #if 1462 #if 0 463 463 pj_log_set_level(5); 464 464 #endif 465 465 466 goto test;466 //goto test; 467 467 468 468 /* Basic create/destroy */ … … 492 492 493 493 /* Direct communication with two components */ 494 test:494 //test: 495 495 rc = perform_ice_test("With two components (RTP and RTCP)", PJ_TRUE, 2, PJ_TRUE, D1, D2, 0, NULL, 0, NULL); 496 496 if (rc != 0) -
pjproject/trunk/pjnath/src/pjnath-test/test.c
r1108 r1129 50 50 mem = &caching_pool.factory; 51 51 52 #if 052 #if 1 53 53 pj_log_set_level(3); 54 54 pj_log_set_decor(PJ_LOG_HAS_NEWLINE | PJ_LOG_HAS_TIME | -
pjproject/trunk/pjnath/src/pjnath/ice_session.c
r1126 r1129 556 556 557 557 /* Find default candidate ID for the component */ 558 #if 0559 558 PJ_DEF(pj_status_t) pj_ice_sess_find_default_cand(pj_ice_sess *ice, 560 559 unsigned comp_id, … … 624 623 return PJ_EBUG; 625 624 } 626 #endif /* if 0 */627 625 628 626
Note: See TracChangeset
for help on using the changeset viewer.