fix rtpchecksums option (bug #3908)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@5397 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2005-04-05 06:53:14 +00:00
parent 315e0c3054
commit 687846975e
2 changed files with 8 additions and 12 deletions

18
rtp.c
View File

@@ -53,7 +53,7 @@ static int dtmftimeout = 3000; /* 3000 samples */
static int rtpstart = 0;
static int rtpend = 0;
#ifdef SO_NO_CHECK
static int checksums = 1;
static int nochecksums = 0;
#endif
/* The value of each payload format mapping: */
@@ -803,9 +803,8 @@ static int rtp_socket(void)
flags = fcntl(s, F_GETFL);
fcntl(s, F_SETFL, flags | O_NONBLOCK);
#ifdef SO_NO_CHECK
if (checksums) {
setsockopt(s, SOL_SOCKET, SO_NO_CHECK, &checksums, sizeof(checksums));
}
if (nochecksums)
setsockopt(s, SOL_SOCKET, SO_NO_CHECK, &nochecksums, sizeof(nochecksums));
#endif
}
return s;
@@ -1540,9 +1539,6 @@ void ast_rtp_reload(void)
char *s;
rtpstart = 5000;
rtpend = 31000;
#ifdef SO_NO_CHECK
checksums = 1;
#endif
cfg = ast_load("rtp.conf");
if (cfg) {
if ((s = ast_variable_retrieve(cfg, "general", "rtpstart"))) {
@@ -1561,12 +1557,12 @@ void ast_rtp_reload(void)
}
if ((s = ast_variable_retrieve(cfg, "general", "rtpchecksums"))) {
#ifdef SO_NO_CHECK
if (ast_true(s))
checksums = 1;
if (ast_false(s))
nochecksums = 1;
else
checksums = 0;
nochecksums = 0;
#else
if (ast_true(s))
if (ast_false(s))
ast_log(LOG_WARNING, "Disabling RTP checksums is not supported on this operating system!\n");
#endif
}