Add note to 'sip show settings' regarding dual-stack support, and a :: bindaddress.

(closes issue #17831)
Reported by: oej
Patches: 
      17831-v6wildcardbind.diff uploaded by qwell (license 4)


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@285369 65c4cc65-6c06-0410-ace0-fbb531ad65f3
certified/1.8.6
Jason Parker 15 years ago
parent 7ea473942b
commit de7ee06771

@ -16810,6 +16810,10 @@ static char *sip_show_settings(struct ast_cli_entry *e, int cmd, struct ast_cli_
ast_cli(a->fd, "\n\nGlobal Settings:\n");
ast_cli(a->fd, "----------------\n");
ast_cli(a->fd, " UDP Bindaddress: %s\n", ast_sockaddr_stringify(&bindaddr));
if (ast_sockaddr_is_ipv6(&bindaddr) && ast_sockaddr_is_any(&bindaddr)) {
ast_cli(a->fd, " ** Additional Info:\n");
ast_cli(a->fd, " [::] may include IPv4 in addition to IPv6, if such a feature is enabled in the OS.\n");
}
ast_cli(a->fd, " TCP SIP Bindaddress: %s\n",
sip_cfg.tcp_enabled != FALSE ?
ast_sockaddr_stringify(&sip_tcp_desc.local_address) :

Loading…
Cancel
Save