mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 12:16:00 +00:00
Fix rt(c)p set debug ip taking wrong argument
Also clean up some coding errors. (closes issue #17469) Reported by: wdoekes Patches: astsvn-rtp-set-debug-ip.patch uploaded by wdoekes (license 717) Tested by: wdoekes, pabelanger git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@273233 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -2532,10 +2532,11 @@ static char *rtp_do_debug_ip(struct ast_cli_args *a)
|
|||||||
rtpdebugaddr.sin_family = AF_INET;
|
rtpdebugaddr.sin_family = AF_INET;
|
||||||
memcpy(&rtpdebugaddr.sin_addr, hp->h_addr, sizeof(rtpdebugaddr.sin_addr));
|
memcpy(&rtpdebugaddr.sin_addr, hp->h_addr, sizeof(rtpdebugaddr.sin_addr));
|
||||||
rtpdebugaddr.sin_port = htons(port);
|
rtpdebugaddr.sin_port = htons(port);
|
||||||
if (port == 0)
|
if (port == 0) {
|
||||||
ast_cli(a->fd, "RTP Debugging Enabled for IP: %s\n", ast_inet_ntoa(rtpdebugaddr.sin_addr));
|
ast_cli(a->fd, "RTP Debugging Enabled for IP: %s\n", ast_inet_ntoa(rtpdebugaddr.sin_addr));
|
||||||
else
|
} else {
|
||||||
ast_cli(a->fd, "RTP Debugging Enabled for IP: %s:%d\n", ast_inet_ntoa(rtpdebugaddr.sin_addr), port);
|
ast_cli(a->fd, "RTP Debugging Enabled for IP: %s:%d\n", ast_inet_ntoa(rtpdebugaddr.sin_addr), port);
|
||||||
|
}
|
||||||
rtpdebug = 1;
|
rtpdebug = 1;
|
||||||
return CLI_SUCCESS;
|
return CLI_SUCCESS;
|
||||||
}
|
}
|
||||||
@@ -2545,7 +2546,7 @@ static char *rtcp_do_debug_ip(struct ast_cli_args *a)
|
|||||||
struct hostent *hp;
|
struct hostent *hp;
|
||||||
struct ast_hostent ahp;
|
struct ast_hostent ahp;
|
||||||
int port = 0;
|
int port = 0;
|
||||||
char *p, *arg = ast_strdupa(a->argv[3]);
|
char *p, *arg = ast_strdupa(a->argv[4]);
|
||||||
|
|
||||||
p = strstr(arg, ":");
|
p = strstr(arg, ":");
|
||||||
if (p) {
|
if (p) {
|
||||||
@@ -2561,10 +2562,11 @@ static char *rtcp_do_debug_ip(struct ast_cli_args *a)
|
|||||||
rtcpdebugaddr.sin_family = AF_INET;
|
rtcpdebugaddr.sin_family = AF_INET;
|
||||||
memcpy(&rtcpdebugaddr.sin_addr, hp->h_addr, sizeof(rtcpdebugaddr.sin_addr));
|
memcpy(&rtcpdebugaddr.sin_addr, hp->h_addr, sizeof(rtcpdebugaddr.sin_addr));
|
||||||
rtcpdebugaddr.sin_port = htons(port);
|
rtcpdebugaddr.sin_port = htons(port);
|
||||||
if (port == 0)
|
if (port == 0) {
|
||||||
ast_cli(a->fd, "RTCP Debugging Enabled for IP: %s\n", ast_inet_ntoa(rtcpdebugaddr.sin_addr));
|
ast_cli(a->fd, "RTCP Debugging Enabled for IP: %s\n", ast_inet_ntoa(rtcpdebugaddr.sin_addr));
|
||||||
else
|
} else {
|
||||||
ast_cli(a->fd, "RTCP Debugging Enabled for IP: %s:%d\n", ast_inet_ntoa(rtcpdebugaddr.sin_addr), port);
|
ast_cli(a->fd, "RTCP Debugging Enabled for IP: %s:%d\n", ast_inet_ntoa(rtcpdebugaddr.sin_addr), port);
|
||||||
|
}
|
||||||
rtcpdebug = 1;
|
rtcpdebug = 1;
|
||||||
return CLI_SUCCESS;
|
return CLI_SUCCESS;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user