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
This commit is contained in:
Aaron An
2016-08-30 11:26:03 +08:00
committed by Joshua Colp
parent d3c4b901d4
commit 2a50c29101
8 changed files with 63 additions and 4 deletions

View File

@@ -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')