Changeset 1641 for pjproject/trunk/pjsip-apps/src/symbian_ua/ua.cpp
- Timestamp:
- Dec 28, 2007 6:55:02 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip-apps/src/symbian_ua/ua.cpp
r1606 r1641 32 32 // Destination URI (to make call, or to subscribe presence) 33 33 // 34 #define SIP_DST_URI "sip:192.168.0. 7:5061"34 #define SIP_DST_URI "sip:192.168.0.11:5060" 35 35 36 36 // … … 58 58 // 59 59 // STUN server 60 #if 160 #if 0 61 61 // Use this to have the STUN server resolved normally 62 62 # define STUN_DOMAIN NULL … … 75 75 // Use ICE? 76 76 // 77 #define USE_ICE 177 #define USE_ICE 0 78 78 79 79 … … 321 321 med_cfg.has_ioqueue = PJ_FALSE; 322 322 med_cfg.clock_rate = 8000; 323 med_cfg.audio_frame_ptime = 40; 323 324 med_cfg.ec_tail_len = 0; 324 325 med_cfg.enable_ice = USE_ICE; … … 453 454 " D Dump states detail\n" 454 455 " P Dump pool factory\n" 456 " l Start loopback audio device\n" 457 " L Stop loopback audio device\n" 455 458 " m Call " SIP_DST_URI "\n" 456 459 " a Answer call\n" … … 482 485 pj_pool_factory_dump(pjsua_get_pool_factory(), PJ_TRUE); 483 486 break; 487 case 'l': 488 pjsua_conf_connect(0, 0); 489 break; 490 case 'L': 491 pjsua_conf_disconnect(0, 0); 492 break; 484 493 case 'm': 485 494 if (g_call_id != PJSUA_INVALID_ID) {
Note: See TracChangeset
for help on using the changeset viewer.