Uci changes : Support P-Early-Media header
3 unresolved threads
3 unresolved threads
Uci changes to enable / disable header P-Early-Media .
Merge request reports
Activity
assigned to @Yalu
20 20 mwi_dialtone_state = |MWI_DIALTONE| 21 21 contact_user = |USER| 22 22 call_waiting_enabled = |CALLWAITING| 23 earlymedia = |EARLYMEDIA| 24 direction = |DIRECTION| changed this line in version 3 of the diff
386 390 else 387 391 sed -i "s/|MEDIASEC|/1/g" $WORK_DIR/pjsip_endpoint 388 392 fi 393 if [ "$earlymedia" == "1" ] ; then Please remove "direction" handling.
"earlymedia" shall have the following values.
- "sendrecv" - asterisk can send and receive early media in both directions
- "sendonly" - as per rfc5009 section 8, "The value "sendonly" indicates a request for authorization of early media from the UAS towards the UAC (backward early media), and not in the other direction."
- "recvonly" - as per rfc5009 section 8, "The value "recvonly" indicates a request for authorization of early media from the UAC towards the UAS (forward early media), and not in the other direction."
- "none" - early-media is NOT supported, i.e. no early media in both directions
The default value (i.e. the config option is missing, or have an invalid value) shall be "sendrecv".
changed this line in version 3 of the diff
added 2 commits
284 286 config_get defaultexpiry $1 defaultexpiry 285 287 config_get registertimeout $1 registertimeout 286 288 config_get registerattempts $1 registerattempts 289 config_get earlymedia $1 earlymedia changed this line in version 3 of the diff
added 4 commits
-
7a52cc86...2804f976 - 2 commits from branch
devel
- 8433fd6e - Uci changes : Support P-Early-Media header
- 4c6587ac - Fixes for review comments
-
7a52cc86...2804f976 - 2 commits from branch
Please register or sign in to reply