Changeset 1394
- Timestamp:
- Jun 26, 2007 12:20:37 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app.c
r1391 r1394 716 716 case OPT_RTP_PORT: 717 717 cfg->rtp_cfg.port = my_atoi(pj_optarg); 718 if (cfg->rtp_cfg.port == 0) { 719 enum { START_PORT=4000 }; 720 unsigned range; 721 722 range = (65535-START_PORT-PJSUA_MAX_CALLS*2); 723 cfg->rtp_cfg.port = START_PORT + 724 ((pj_rand() % range) & 0xFFFE); 725 } 726 718 727 if (cfg->rtp_cfg.port < 1 || cfg->rtp_cfg.port > 65535) { 719 728 PJ_LOG(1,(THIS_FILE,
Note: See TracChangeset
for help on using the changeset viewer.