- 20 12月, 2017 1 次提交
-
-
由 Piotr Gregor 提交于
Fixes build but must be tested at runtime.
-
- 19 12月, 2017 1 次提交
-
-
由 Anthony Minessale 提交于
-
- 05 12月, 2017 2 次提交
-
-
由 Mike Jerris 提交于
Merge pull request #3 in FSA/freeswitch-advantage from ~PIOTRGREGOR/freeswitch:feature/FS-10778-srtp-mki-support to v1.8-fsa * commit 'c47d3ad6': FS-10778: Evaluate rtp_secure_media_mki variable with switch_channel_var_true
-
由 Piotr 提交于
Previously rtp_secure_media_mki channel variable was checked only for existence, now it is checked if it's defined and evaluates to true with switch_channel_var_true().
-
- 04 12月, 2017 3 次提交
-
-
由 Mike Jerris 提交于
Merge pull request #2 in FSA/freeswitch-advantage from ~PIOTRGREGOR/freeswitch:feature/FS-10778-srtp-mki-support to v1.8-fsa * commit '903ea6e6': FS-10778: Fix compilation and refactor code
-
由 Anthony Minessale 提交于
-
由 Piotr 提交于
Prefer break over indent. if (!p) { break; } // the code... over if (p) { // the // code // ... }
-
- 01 12月, 2017 1 次提交
-
-
由 Mike Jerris 提交于
-
- 30 11月, 2017 2 次提交
-
-
由 Mike Jerris 提交于
Merge pull request #1 in FSA/freeswitch-advantage from ~PIOTRGREGOR/freeswitch:feature/FS-10778-srtp-mki-support to v1.8-fsa * commit '6520827b': FS-10778: Add support for MKI to SRTP
-
由 Piotr Gregor 提交于
MKI support for SRTP has been tested on calls to/from Telnyx's Skype for Business from/to local extension registered to FS and between Skype for Business clients connected to FreeSWITCH. SfB -> FreeSWITCH -> User 1004 SRTP RTP with MKI SfB <- FreeSWITCH <- User 1004 SRTP RTP SfB <-> FreeSWITCH <-> SfB SRTP/MKI SRTP/MKI Channel variable "rtp_secure_media_mki" was added to drive offering of MKI on outbound SRTP from FS. How to use rtp_secure_media_mki Set rtp_secure_media_mki=true to offer MKI for outgoing SRTP (if SRTP is used) in inbound call. Export rtp_secure_media=true to offer MKI for outgoing SRTP (if SRTP is used) on outbound call. ... or set it in the codec string for bridged calls <action application="set" data="rtp_secure_media_mki=true"/> <action application="export" data="rtp_secure_media_mki=true"/> <action application="bridge" data="[absolute_codec_string=^^:PCMU:PCMA:G729,rtp_secure_media=true,rtp_secure_media_mki=true]sofia/external/+12404373253@169.55.36.24:5060;transport=tls"/> EXAMPLES 1. Set example 57 <extension name="telnyx_test_1_2"> 58 <condition field="destination_number" expression="^(0012404373253)$"> 59 <action application="set" data="rtp_secure_media=true"/> 60 <action application="set" data="rtp_secure_media_mki=true"/> 61 <action application="answer"/> 62 <action application="bridge" data="user/1004@${domain_name}"/> 63 </condition> 64 </extension> Description: SRTP will be used on outbound leg in incoming call due to rtp_secure_media=true set and MKI will be offered in SDP. SRTP will not be used on a bridged call to extension 1004. 2. Export example 75 <extension name="to_skype_for_business"> 76 <condition field="destination_number" expression="^(840531022)$"> 77 <action application="set" data="rtp_secure_media=optional"/> 78 <action application="export" data="rtp_secure_media_mki=true"/> 79 <action application="bridge" data="[absolute_codec_string=^^:PCMU:PCMA:G729,rtp_secure_media=true]sofia/external/+12404373728@169.55.36.24:5060;transport=tls"/> 80 </condition> 81 </extension> Description: SRTP on inbound call has been set to optional therefore MKI will be used on outbound SRTP in this call if SRTP is used at all. SRTP will be used on a bridged call due to rtp_secure_media=true set in codec string and MKI will be used in offering SDP. 3. Bridging between Skype for Business clients: set 97 <extension name="S4B_fs_S4B"> 98 <condition field="destination_number" expression="^(0012404373254)$"> 99 <action application="set" data="rtp_secure_media=true"/> 100 <action application="set" data="rtp_secure_media_mki=true"/> 101 <action application="bridge" data="[absolute_codec_string=^^:PCMU:PCMA:G729,rtp_secure_media=true]sofia/external/+12404373253@169.55.36.$ 102 </condition> 103 </extension> Result: 2017-11-27 19:00:26.977704 [NOTICE] switch_ivr_originate.c:527 Ring Ready sofia/external/+12404373728@telnyxlab.com! 2017-11-27 19:00:32.657687 [NOTICE] switch_core_media.c:1534 Skipping MKI due to empty index 2017-11-27 19:00:32.657687 [INFO] switch_rtp.c:4079 Activating audio Secure RTP SEND 2017-11-27 19:00:32.657687 [INFO] switch_rtp.c:4057 Activating audio Secure RTP RECV 2017-11-27 19:00:32.657687 [NOTICE] sofia.c:8419 Channel [sofia/external/%2B12404373253@169.55.36.24:5060] has been answered 2017-11-27 19:00:35.317702 [INFO] switch_rtp.c:4079 Activating audio Secure RTP SEND (with MKI) 2017-11-27 19:00:35.317702 [INFO] switch_rtp.c:4057 Activating audio Secure RTP RECV (with MKI) 2017-11-27 19:00:35.317702 [NOTICE] sofia_media.c:92 Pre-Answer sofia/external/+12404373728@telnyxlab.com! Description: SRTP with MKI is used on outbound leg of inbound call (due to use on inbound leg of this call and "set"). Standard SRTP is used in both legs of outbound call, because rtp_secure_media_mki wasn't exported or set in codec string for the outbound call. 4. Bridging between Skype for Business clients: Set and export 97 <extension name="S4B_fs_S4B"> 98 <condition field="destination_number" expression="^(0012404373254)$"> 99 <action application="set" data="rtp_secure_media=true"/> 100 <action application="set" data="rtp_secure_media_mki=true"/> 101 <action application="export" data="rtp_secure_media_mki=true"/> 102 <action application="bridge" data="[absolute_codec_string=^^:PCMU:PCMA:G729,rtp_secure_media=true]sofia/external/+12404373253@169.55.36.24:5060;transport=tls"/> 103 </condition> 104 </extension> Result: 2017-11-27 18:51:29.017689 [NOTICE] switch_ivr_originate.c:527 Ring Ready sofia/external/+12404373728@telnyxlab.com! 2017-11-27 18:51:35.097729 [INFO] switch_rtp.c:4079 Activating audio Secure RTP SEND (with MKI) 2017-11-27 18:51:35.097729 [INFO] switch_rtp.c:4057 Activating audio Secure RTP RECV (with MKI) 2017-11-27 18:51:35.097729 [NOTICE] sofia.c:8419 Channel [sofia/external/%2B12404373253@169.55.36.24:5060] has been answered 2017-11-27 18:51:37.797706 [INFO] switch_rtp.c:4079 Activating audio Secure RTP SEND (with MKI) 2017-11-27 18:51:37.797706 [INFO] switch_rtp.c:4057 Activating audio Secure RTP RECV (with MKI) Description: Connecting Skype For Business client to Skype for Business client. Send SRTP with MKI in both outbound streams: - for inbound call: MKI was offered in incoming call and enabled for outbound leg with "set" - for outbound call: MKI was enabled with "export" 5. Other examples Setup to use SRTP with MKI only on the inbound SRTP on incoming call from Telnyx SfB Tested dialing 0012404373253 from SfB to FS, leg SfB <-> FS uses SRTP with MKI on inbound SRTP only 57 <extension name="telnyx_test_1_2"> 58 <condition field="destination_number" expression="^(0012404373253)$"> 59 <action application="set" data="rtp_secure_media=true"/> 61 <action application="answer"/> 62 <action application="bridge" data="user/1004@${domain_name}"/> 63 </condition> 64 </extension> Result: 2017-11-23 20:44:35.406026 [INFO] mod_dialplan_xml.c:637 Processing Test02 <+12404373728>->0012404373253 in context public 2017-11-23 20:44:38.566022 [INFO] switch_rtp.c:4107 Activating audio Secure RTP SEND 2017-11-23 20:44:38.566022 [INFO] switch_rtp.c:4085 Activating audio Secure RTP RECV (with MKI) Setup to send and receive SRTP with MKI on incoming call from Telnyx SfB Tested dialing 0012404373253 from SfB to FS, leg SfB <-> FS uses SRTP with MKI in both directions 57 <extension name="telnyx_test_1_2"> 58 <condition field="destination_number" expression="^(0012404373253)$"> 59 <action application="set" data="rtp_secure_media=true"/> 60 <action application="set" data="rtp_secure_media_mki"/> 61 <action application="answer"/> 62 <action application="bridge" data="user/1004@${domain_name}"/> 63 </condition> 64 </extension> Result: 2017-11-23 20:42:06.026034 [INFO] mod_dialplan_xml.c:637 Processing Test02 <+12404373728>->0012404373253 in context public 2017-11-23 20:42:09.526034 [INFO] switch_rtp.c:4107 Activating audio Secure RTP SEND (with MKI) 2017-11-23 20:42:09.526034 [INFO] switch_rtp.c:4085 Activating audio Secure RTP RECV (with MKI) Setup to offer MKI on outbound call to extension 1001 (X-Lite -> FS -> linphone) Tested dialing 0012404373253 from user 1004, leg FS <-> 1001 uses SRTP with MKI 782 <extension name="telnyx_test_1_2"> 783 <condition field="destination_number" expression="^(0012404373253)$"> 784 <action application="export" data="rtp_secure_media_outbound=true"/> 785 <action application="export" data="rtp_secure_media_mki"/> 786 <action application="answer"/> 797 <action application="bridge" data="user/1001@${domain_name}"/> 798 </condition> 799 </extension> Result: 2017-11-23 20:23:26.266034 [INFO] mod_dialplan_xml.c:637 Processing 1000 windows <1000>->0012404373253 in context default 2017-11-23 20:23:26.366035 [INFO] switch_rtp.c:4107 Activating audio Secure RTP SEND (with MKI) 2017-11-23 20:23:26.366035 [INFO] switch_rtp.c:4085 Activating audio Secure RTP RECV SfB sometimes offers crypto with LIFETIME but no MKI index, e.g.: a=crypto:5 AES_CM_128_HMAC_SHA1_80 inline:9OtFWi17H9E8ywlm0iazemjAqXu2RhJ3DZyo+VLJ|2^31 Defaulting to no-mki SRTP in case key material doesn't contain MKI index.
-
- 20 11月, 2017 5 次提交
-
-
由 Anthony Minessale 提交于
-
由 Anthony Minessale 提交于
-
由 Anthony Minessale 提交于
-
由 Anthony Minessale 提交于
-
由 Mike Jerris 提交于
-
- 16 11月, 2017 1 次提交
-
-
由 Anthony Minessale 提交于
FS-10622: [core] Auto-fixing audio codec from G722 to PCMU although PCMU was not negotiated #resolve
-
- 15 11月, 2017 2 次提交
-
-
由 Brian West 提交于
Merge pull request #1434 in FS/freeswitch from ~PRAVEEN_KUMAR/freeswitch:bugfix/FS-10728-mod_avmd-backward-compatibility_issue to master * commit '179a659b': FS-10728: [mod_avmd] backward compatibility issue in avmd_main_api
-
由 Anthony Minessale 提交于
-
- 10 11月, 2017 1 次提交
-
-
由 Anthony Minessale 提交于
This reverts commit 5658e581.
-
- 06 11月, 2017 1 次提交
-
-
由 Italo Rossi 提交于
-
- 03 11月, 2017 2 次提交
-
-
由 Italo Rossi 提交于
FS-10772 - [mod_callcenter] commit 404c6969 added an invalid WHERE syntax, fixed.
-
由 Italo Rossi 提交于
-
- 02 11月, 2017 4 次提交
-
-
由 Anthony Minessale 提交于
-
由 Anthony Minessale 提交于
-
由 Anthony Minessale 提交于
-
由 Praveen Kumar 提交于
avmd_start_app flow will break if 'inbound_channel'/'outbound_channel' both has been set and the avmd_start_app invoked for inbound call leg. With this change, it'll be able to work even if we set 'inbound_channel'/'outbound_channel' both.
-
- 25 10月, 2017 4 次提交
-
-
由 Anthony Minessale 提交于
-
由 Brian West 提交于
-
由 Anthony Minessale 提交于
-
由 Anthony Minessale 提交于
-
- 23 10月, 2017 4 次提交
-
-
由 Anthony Minessale 提交于
-
由 Anthony Minessale 提交于
-
由 Mike Jerris 提交于
Merge pull request #1394 in FS/freeswitch from ~F93/freeswitch:bugfix/FS-10672-truncated-variable-values-passed to master * commit 'c6e2ce18': FS-10672 [core] Fix event url-encoding buffer size
-
由 Shane Bryldt 提交于
FS-10739: [libblade] Fixed disconnecting downstream sessions when upstream session is disconnected, without disconnecting loopback which always remains available
-
- 19 10月, 2017 3 次提交
-
-
由 Shane Bryldt 提交于
FS-10739: [libblade] Small fix to testcon, forgot to uncomment the test.join response sending after testing TTL on responses
-
由 Shane Bryldt 提交于
FS-10739: [libblade] Added TTL to request which now produces an error response when a response is not received locally within the timeout, this utilizes loopback session stuff which had a couple bugs that are now also fixed, further loopback testing is still required on event subscriptions, protocol publishing, protocol locating, and protocol execution
-
由 Shane Bryldt 提交于
FS-10739: [libblade] Loopback session support and reworking sessions to use independent ids, blade.connect now also responds with both the sessionid and the nodeid separately
-
- 17 10月, 2017 3 次提交
-
-
由 Italo Rossi 提交于
-
由 Mike Jerris 提交于
Merge pull request #1422 in FS/freeswitch from ~ANDYWOLK/freeswitch:bugfix/FS-10725-mod_v8-and-lib-v8-wont-build-on to master * commit '9c4fc2af': FS-10725: [Build-System] Add DownloadPackageTask in order to use in props instead of using legacy util.vbs within projects. Get rid of lib v8 download project in favor of props on windows.
-
由 Andrey Volk 提交于
FS-10725: [Build-System] Add DownloadPackageTask in order to use in props instead of using legacy util.vbs within projects. Get rid of lib v8 download project in favor of props on windows.
-