From 2a50c2910144e1b4095d171b1386fd5ebb0c5b5a Mon Sep 17 00:00:00 2001 From: Aaron An Date: Tue, 30 Aug 2016 11:26:03 +0800 Subject: 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 --- ...318_add_preferred_codec_only_option_to_pjsip.py | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 contrib/ast-db-manage/config/versions/7f3e21abe318_add_preferred_codec_only_option_to_pjsip.py (limited to 'contrib') 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') -- cgit v1.2.3