Displaying 1 result from an estimated 1 matches for "insecure2str".
2005 Aug 26
1
realtime sip channel configuration -> insecure option
...ntication came from
invite: don't require initial INVITE to authenticate
port,invite: don't require initial INVITE to authenticate and ignore the port
where the request came from
(http://www.voip-info.org/tiki-index.php?page=Asterisk+sip+insecure)
also found this on chan_sip.c:
/*--- insecure2str: Convert Insecure setting to printable string ---*/
static const char *insecure2str(int port, int invite)
{
if (port && invite)
return "port,invite";
else if (port)
return "port";
else if (invite)...