summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorAaron An <anjb@ti-net.com.cn>2016-08-30 11:26:03 +0800
committerJoshua Colp <jcolp@digium.com>2016-09-09 05:36:19 -0500
commit2a50c2910144e1b4095d171b1386fd5ebb0c5b5a (patch)
treebcc7712ca9397f1ae82f5e30905f21b247acde74 /contrib
parentd3c4b901d476a41b3f7df063aeba3852df4e26b7 (diff)
res/res_pjsip: Add preferred_codec_only config to pjsip endpoint.
This patch add config to pjsip by endpoint. ;preferred_codec_only=yes ; Respond to a SIP invite with the single most preferred codec ; rather than advertising all joint codec capabilities. This ; limits the other side's codec choice to exactly what we prefer. ASTERISK-26317 #close Reported by: AaronAn Tested by: AaronAn Change-Id: Iad04dc55055403bbf5ec050997aee2dadc4f0762
Diffstat (limited to 'contrib')
-rw-r--r--contrib/ast-db-manage/config/versions/7f3e21abe318_add_preferred_codec_only_option_to_pjsip.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/contrib/ast-db-manage/config/versions/7f3e21abe318_add_preferred_codec_only_option_to_pjsip.py b/contrib/ast-db-manage/config/versions/7f3e21abe318_add_preferred_codec_only_option_to_pjsip.py
new file mode 100644
index 000000000..083d08966
--- /dev/null
+++ b/contrib/ast-db-manage/config/versions/7f3e21abe318_add_preferred_codec_only_option_to_pjsip.py
@@ -0,0 +1,30 @@
+"""add preferred_codec_only option to pjsip
+
+Revision ID: 7f3e21abe318
+Revises: 4e2493ef32e6
+Create Date: 2016-09-02 11:00:23.534748
+
+"""
+
+# revision identifiers, used by Alembic.
+revision = '7f3e21abe318'
+down_revision = '4e2493ef32e6'
+
+from alembic import op
+import sqlalchemy as sa
+from sqlalchemy.dialects.postgresql import ENUM
+
+YESNO_NAME = 'yesno_values'
+YESNO_VALUES = ['yes', 'no']
+
+def upgrade():
+ ############################# Enums ##############################
+
+ # yesno_values have already been created, so use postgres enum object
+ # type to get around "already created" issue - works okay with mysql
+ yesno_values = ENUM(*YESNO_VALUES, name=YESNO_NAME, create_type=False)
+
+ op.add_column('ps_endpoints', sa.Column('preferred_codec_only', yesno_values))
+
+def downgrade():
+ op.drop_column('ps_endpoints', 'preferred_codec_only')