From 6aa9c04ee965624e722821e8b04e1b8f3ad9ee37 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Fri, 21 Mar 2008 15:25:06 +0000 Subject: [PATCH] Merged revisions 110499 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ........ r110499 | russell | 2008-03-21 10:24:43 -0500 (Fri, 21 Mar 2008) | 3 lines Note that the TCP and TLS support is currently considered experimental and is subject to change while we work out the remaining issues. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@110501 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- CHANGES | 4 ++-- configs/sip.conf.sample | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 9549b4b50b..944dee06af 100644 --- a/CHANGES +++ b/CHANGES @@ -149,8 +149,8 @@ SIP changes * Added SIP Session Timers support (RFC 4028). This prevents stuck SIP sessions that were not properly torn down due to network or endpoint failures during an established SIP session. - * Added TCP and TLS support for SIP. See doc/siptls.txt and configs/sip.conf.sample for - more information on how it is used. + * Added experimental TCP and TLS support for SIP. See doc/siptls.txt and + configs/sip.conf.sample for more information on how it is used. IAX2 changes ------------ diff --git a/configs/sip.conf.sample b/configs/sip.conf.sample index df18aea122..0d4f92e8e9 100644 --- a/configs/sip.conf.sample +++ b/configs/sip.conf.sample @@ -80,6 +80,12 @@ bindport=5060 ; UDP Port to bind to (SIP standard port is 5060) ; bindport is the local UDP port that Asterisk will listen on bindaddr=0.0.0.0 ; IP address to bind to (0.0.0.0 binds to all) +; +; Note that the TCP and TLS support for chan_sip is currently considered +; experimental. Since it is new, all of the related configuration options are +; subject to change in any release. If they are changed, the changes will +; be reflected in this sample configuration file, as well as in the UPGRADE.txt file. +; tcpenable=yes ; Enable server for incoming TCP connections (default is yes) tcpbindaddr=0.0.0.0 ; IP address for TCP server to bind to (0.0.0.0 binds to all interfaces) ; Optionally add a port number, 192.168.1.1:5062 (default is port 5060)