- Timestamp:
- Apr 17, 2008 5:25:37 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/projects/ice-turn07/pjsip-apps/src/pjsua/pjsua_app.c
r1926 r1932 23 23 #define NO_LIMIT (int)0x7FFFFFFF 24 24 25 #if 125 #if 0 26 26 #define TURN_SERVER "turn.pjsip.org" 27 27 #define TURN_PORT 34780 28 #define TURN_TCP 029 28 #define TURN_REALM "pjsip.org" 30 29 #define TURN_USER "700" 31 30 #define TURN_PASSWD "700" 32 31 #endif 32 33 #if 1 34 /* Eyeball test */ 35 #define TURN_SERVER "216.187.87.78" 36 #define TURN_PORT 3478 37 #define TURN_REALM "test.eyeball.com" 38 #define TURN_USER "sipit6" 39 #define TURN_PASSWD "password" 40 #endif 41 33 42 34 43 … … 240 249 static void default_config(struct app_config *cfg) 241 250 { 242 char tmp[ 80];251 char tmp[120]; 243 252 unsigned i; 244 253 245 254 pjsua_config_default(&cfg->cfg); 246 pj_ansi_sprintf(tmp, "PJSUA v%s/%s ", pj_get_version(), PJ_OS_NAME);255 pj_ansi_sprintf(tmp, "PJSUA v%s/%s (http://pjsip.org)", pj_get_version(), PJ_OS_NAME); 247 256 pj_strdup2_with_null(app_config.pool, &cfg->cfg.user_agent, tmp); 248 257
Note: See TracChangeset
for help on using the changeset viewer.