summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKinsey Moore <kmoore@digium.com>2014-12-29 13:14:19 +0000
committerKinsey Moore <kmoore@digium.com>2014-12-29 13:14:19 +0000
commitcb6a737359f09e03622760b2e68928231fac9222 (patch)
tree133688900cd8461b7690c4bbf725f70638641856
parent91becf952a3f99f16406d05da13985747d57f989 (diff)
PJSIP: Update transport method documentation
This updates the documentation for the 'method' configuration option to be more verbose about the behaviors of values 'unspecified' and 'default'. They do exactly the same thing which is to select the default as defined by PJSIP which is currently TLSv1. Review: https://reviewboard.asterisk.org/r/4264/ ........ Merged revisions 430145 from http://svn.asterisk.org/svn/asterisk/branches/13 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@430146 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--res/res_pjsip.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/res/res_pjsip.c b/res/res_pjsip.c
index 426b9d796..2d0f2cdcf 100644
--- a/res/res_pjsip.c
+++ b/res/res_pjsip.c
@@ -875,8 +875,12 @@
<synopsis>Method of SSL transport (TLS ONLY)</synopsis>
<description>
<enumlist>
- <enum name="default" />
- <enum name="unspecified" />
+ <enum name="default">
+ <para>The default as defined by PJSIP. This is currently TLSv1, but may change with future releases.</para>
+ </enum>
+ <enum name="unspecified">
+ <para>This option is equivalent to setting 'default'</para>
+ </enum>
<enum name="tlsv1" />
<enum name="sslv2" />
<enum name="sslv3" />