Skip to content
Snippets Groups Projects
  1. Aug 25, 2015
    • Joshua Colp's avatar
      res_pjsip: Add common ast_sip_get_host_ip API. · d013ecf7
      Joshua Colp authored
      Modules commonly used the pj_gethostip function for retrieving the
      IP address of the host. This function does not cache the result and may
      result in a DNS lookup occurring, or additional work. If the DNS
      server is unreachable or network issues arise this can cause the
      pj_gethostip function to block for a period of time.
      
      This change adds an ast_sip_get_host_ip and ast_sip_get_host_ip_string
      function which does the same thing but caches the host IP address at
      module load time. This results in no additional work being done each
      time the local host IP address is needed.
      
      ASTERISK-25342 #close
      
      Change-Id: I3205deb679b01fa5ac05a94b623bfd620a2abe1e
      d013ecf7
  2. Aug 24, 2015
  3. Aug 23, 2015
    • Matt Jordan's avatar
      res_pjsip/pjsip_configuration: Disregard empty auth values · 3af34441
      Matt Jordan authored
      When an endpoint is backed by a non-static conf file backend (such as
      the AstDB or Realtime), the 'auth' object may be returned as being an
      empty string. Currently, res_pjsip will interpret that as being a valid
      auth object, and will attempt to authenticate inbound requests. This
      isn't desired; is an auth value is empty (which the name of an auth
      object cannot be), we should instead interpret that as being an invalid
      auth object and skip it.
      
      ASTERISK-25339 #close
      
      Change-Id: Ic32b0c6eb5575107d5164a8c40099e687cd722c7
      3af34441
  4. Aug 22, 2015
  5. Aug 20, 2015
  6. Aug 19, 2015
    • Richard Mudgett's avatar
      rtp_engine.c: Extract rtp_codecs_payload_replace_rx(). · 38854a9f
      Richard Mudgett authored
      ASTERISK-25166
      Reported by: Kevin Harwell
      
      ASTERISK-17410
      Reported by: Boris Fox
      
      Change-Id: I34e23bf5b084c8570f9c3e6ccd19b95fe85af239
      38854a9f
    • Richard Mudgett's avatar
      rtp_engine.c: Initial split of payload types into rx and tx mappings. · 1a549ed1
      Richard Mudgett authored
      There are numerous problems with the current implementation of the RTP
      payload type mapping in Asterisk.  It uses only one mapping structure to
      associate payload types to codecs.  The single mapping is overkill if all
      of the payload type values are well known values.  Dynamic payload type
      mappings do not work as well with the single mapping because RFC3264
      allows each side of the link to negotiate different dynamic mappings for
      what they want to receive.  Not only could you have the same codec mapped
      for sending and receiving on different payload types you could wind up
      with the same payload type mapped to different codecs for each direction.
      
      1) An independent payload type mapping is needed for sending and
      receiving.
      
      2) The receive mapping needs to keep track of previous mappings because of
      the slack to when negotiation happens and current packets in flight using
      the old mapping arrive.
      
      3) The transmit mapping only needs to keep track of the current negotiated
      values since we are sending the packets and know when the switchover takes
      place.
      
      * Needed to create ast_rtp_codecs_payload_code_tx() and make some callers
      use the new function because ast_rtp_codecs_payload_code() was used for
      mappings in both directions.
      
      * Needed to create ast_rtp_codecs_payloads_xover() for cases where we need
      to pass preferred codec mappings to the peer channel for early media
      bridging or when we need to prefer the offered mapping that RFC3264 says
      we SHOULD use.
      
      * ast_rtp_codecs_payloads_xover() and ast_rtp_codecs_payload_code_tx() are
      the only new public functions created.  All the others were only used for
      the tx or rx mapping direction so the function doxygen now reflects which
      direction the function operates.
      
      * chan_mgcp.c: Removed call to ast_rtp_codecs_payloads_clear() as doing
      that makes no sense when processing an incoming SDP.  We would be wiping
      out any mappings that we set for the possible outgoing SDP we sent
      earlier.
      
      ASTERISK-25166
      Reported by: Kevin Harwell
      
      ASTERISK-17410
      Reported by: Boris Fox
      
      Change-Id: Iaf6c227bca68cb7c414cf2fd4108a8ac98bd45ac
      1a549ed1
    • Mark Michelson's avatar
      aacb46b5
    • Mark Michelson's avatar
    • Mark Michelson's avatar
    • Mark Michelson's avatar
    • Richard Mudgett's avatar
      ari/ari_websockets.c: Fix ast_debug parameter type mismatch. · 21d419e4
      Richard Mudgett authored
      This is a type mismatch fix of the debugging commit
      c63316ee made to find out why
      a testsuite test was failing only on one of the continuous
      integration build agents.
      
      Change-Id: Iba34f6e87cec331f6ac80e4daff6476ea6f00a75
      21d419e4
    • Scott Griepentrog's avatar
      contrib: script install_prereq should install sqlite3 · 53e2a6a8
      Scott Griepentrog authored
      Asterisk needs the sqlite 3 library, which is package
      sqlite-devel in CentOS. By adding this package to the
      script, a problem with configure failing is resolved.
      
      ASTERISK-25331 #close
      Reported by: Kevin Harwell
      
      Change-Id: I90efaf6a01914fea03f21e5cdbd91c348f44b0ec
      53e2a6a8
    • Matt Jordan's avatar
    • Matt Jordan's avatar
  7. Aug 18, 2015
  8. Aug 17, 2015
  9. Aug 14, 2015
    • Mark Michelson's avatar
      res_pjsip_sdp_rtp: Restore removed NULL check. · 5a857115
      Mark Michelson authored
      When sending an RTP keepalive, we need to be sure we're not dealing with
      a NULL RTP instance. There had been a NULL check, but the commit that
      added the rtp_timeout and rtp_hold_timeout options removed the NULL
      check.
      
      Change-Id: I2d7dcd5022697cfc6bf3d9e19245419078e79b64
      5a857115
  10. Aug 13, 2015
  11. Aug 12, 2015
Loading