1. 24 7月, 2018 31 次提交
    • Seven Du's avatar
      fix split slice · 2e449917
      Seven Du 提交于
      2e449917
    • Brian West's avatar
      FS-10892: [mod_av] Lip Sync Improvements #resolve · 105a291b
      Brian West 提交于
      105a291b
    • Anthony Minessale's avatar
    • Anthony Minessale's avatar
    • Anthony Minessale's avatar
    • Anthony Minessale's avatar
    • Anthony Minessale's avatar
    • Anthony Minessale's avatar
    • Anthony Minessale's avatar
      FS-10803: [mod_conference] Add support for alternate video layout config per… · b8744e4c
      Anthony Minessale 提交于
      FS-10803: [mod_conference] Add support for alternate video layout config per conference profile #resolve
      b8744e4c
    • Anthony Minessale's avatar
    • Anthony Minessale's avatar
      remove hack for chrome we don't need anymore · 2e1f8283
      Anthony Minessale 提交于
      2e1f8283
    • Anthony Minessale's avatar
      892181bb
    • Anthony Minessale's avatar
    • Anthony Minessale's avatar
      2d5e52a0
    • Anthony Minessale's avatar
      FS-10762: [freeswitch-core] Websocket logic error · f3d8a3b0
      Anthony Minessale 提交于
      f3d8a3b0
    • Anthony Minessale's avatar
      247ac097
    • Anthony Minessale's avatar
      5a6f4679
    • Anthony Minessale's avatar
      d395223f
    • Piotr Gregor's avatar
      333516c4
    • Mike Jerris's avatar
      swigall · 177823f9
      Mike Jerris 提交于
      177823f9
    • Piotr Gregor's avatar
      FS-10853: Fix failed build for mod_dingaling · 03d8aa4e
      Piotr Gregor 提交于
      Fixes build but must be tested at runtime.
      03d8aa4e
    • Anthony Minessale's avatar
      63f3531c
    • Piotr's avatar
      FS-10778: Evaluate rtp_secure_media_mki variable with switch_channel_var_true · a17993a2
      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().
      a17993a2
    • Anthony Minessale's avatar
    • Piotr's avatar
      FS-10778: Fix compilation and refactor code · b0106ac1
      Piotr 提交于
      Prefer break over indent.
      
      if (!p) {
          break;
      }
      
      // the code...
      
      over
      
      if (p) {
          // the
          // code
          // ...
      }
      b0106ac1
    • Mike Jerris's avatar
      FS-10778: fix MKI compile error · 477f3bc5
      Mike Jerris 提交于
      477f3bc5
    • Piotr Gregor's avatar
      FS-10778: Add support for MKI to SRTP · 1fdd58f5
      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.
      1fdd58f5
    • Anthony Minessale's avatar
      180d427c
    • Anthony Minessale's avatar
      34f0ab58
    • Anthony Minessale's avatar
      FS-10762: [freeswitch-core] Websocket logic error · c5e662c9
      Anthony Minessale 提交于
      c5e662c9
    • Anthony Minessale's avatar
  2. 23 7月, 2018 1 次提交
  3. 19 7月, 2018 3 次提交
  4. 18 7月, 2018 1 次提交
  5. 13 7月, 2018 4 次提交