Skip to content
Snippets Groups Projects
  1. Sep 20, 2017
  2. Sep 19, 2017
    • George Joseph's avatar
      res_pjsip_pubsub: Check for Content-Type header in rx_notify_request · b7480382
      George Joseph authored
      pubsub_on_rx_notify_request wasn't checking for a null
      Content-Type header before checking that it was
      application/simple-message-summary.
      
      ASTERISK-27279
      Reported by: Ross Beer
      
      Change-Id: Iec2a6c4d2e74af37ff779ecc9fd35644c5c4ea52
      b7480382
    • Joshua Colp's avatar
      app_confbridge: Only create a channel that records audio. · 6fd3db51
      Joshua Colp authored
      This change makes it so that the conference recorder channel
      that is created only contains audio formats and an audio stream.
      This is because the underlying application used by ConfBridge to
      record, MixMonitor, only allows recording audio.
      
      Having additional streams (and in particular a video stream) can
      result in clients needlessly renegotiating to add a video stream
      that will never receive video.
      
      Change-Id: I89d38aedc9205eca7741d5435e73e73bb9de97a0
      6fd3db51
    • Sean Bright's avatar
      res_calendar: Plug memory leak and micro-optimization · 55567ee1
      Sean Bright authored
      ast_variables_destroy is NULL safe, so there is no need to check its
      argument before passing it.
      
      ASTERISK-25524 #close
      Reported by: Jesper
      
      Change-Id: Ib0f8057642e9d471960f1a79fd42e5a3ce587d3b
      55567ee1
  3. Sep 18, 2017
  4. Sep 15, 2017
  5. Sep 14, 2017
    • George Joseph's avatar
      res_pjsip: Filter out non SIP(S) requests · d178f497
      George Joseph authored
      Incoming requests with non sip(s) URIs in the Request, To, From
      or Contact URIs are now rejected with
      PJSIP_SC_UNSUPPORTED_URI_SCHEME (416).  This is performed in
      pjsip_message_filter (formerly pjsip_message_ip_updater) and is
      done at pjproject's "TRANSPORT" layer before a request can even
      reach the distributor.
      
      URIs read by res_pjsip_outbound_publish from pjsip.conf are now
      also checked for both length and sip(s) scheme.  Those URIs read
      by outbound registration and aor were already being checked for
      scheme but their error messages needed to be updated to include
      scheme failure as well as length failure.
      
      Change-Id: Ibb2f9f1d2dc7549da562af4cbd9156c44ffdd460
      d178f497
    • Jenkins2's avatar
    • Joshua Colp's avatar
      ba27a650
    • Joshua Colp's avatar
      tcptls: Change error message to debug. · 01f2220b
      Joshua Colp authored
      The Websocket implementation will steal the underlying stream of
      TCP/TLS sessions. This results in an error message being output
      about a stream not being present when in reality this is actually
      fine.
      
      This change moves it to a debug message instead.
      
      Change-Id: I66cc639080b4b4599beadb4faa7d313f2721d094
      01f2220b
  6. Sep 13, 2017
    • Sean Bright's avatar
      res_calendar: Various fixes · d8112cd9
      Sean Bright authored
      * The way that we were looking at XML elements for CalDAV was extremely
        fragile, so use SAX2 for increased robustness.
      
      * Don't complain about a 'channel' not be specified if autoreminder is
        not set. Assume that if 'channel' is not set, we don't want to be
        notified.
      
      * Fix some truncated CLI output in 'calendar show calendar' and make the
        'Autoreminder' description a bit more clear
      
      ASTERISK-24588 #close
      Reported by: Stefan Gofferje
      
      ASTERISK-25523 #close
      Reported by: Jesper
      
      Change-Id: I200d11afca6a47e7d97888f286977e2e69874b2c
      d8112cd9
    • Sean Bright's avatar
      chan_rtp: Use μ-law by default instead of signed linear · eec03963
      Sean Bright authored
      Multicast/Unicast RTP do not use SDP so we need to use a format that
      cleanly maps to one of the static RTP payload types. Without this
      change, an Originate to a Multicast or Unicast channel without a format
      specified would produce no audio on the receiving device.
      
      ASTERISK-21399 #close
      Reported by: Tzafrir Cohen
      
      Change-Id: I97e332b566e85da04b0004b9b0daae746cfca0e3
      eec03963
    • George Joseph's avatar
      res_pjsip: Add handling for incoming unsolicited MWI NOTIFY · 446d48fd
      George Joseph authored
      A new endpoint parameter "incoming_mwi_mailbox" allows Asterisk to
      receive unsolicited MWI NOTIFY requests and make them available to
      other modules via the stasis message bus.
      
      res_pjsip_pubsub has a new handler "pubsub_on_rx_mwi_notify_request"
      that parses a simple-message-summary body and, if
      endpoint->incoming_mwi_account is set, calls ast_publish_mwi_state
      with the voice-message counts from the message.
      
      Change-Id: I08bae3d16e77af48fcccc2c936acce8fc0ef0f3c
      446d48fd
  7. Sep 12, 2017
  8. Sep 11, 2017
  9. Sep 10, 2017
    • Walter Doekes's avatar
      res/res_pjsip: Fix localnet checks in pjsip, part 2. · 680aba21
      Walter Doekes authored
      In 45744fc5, I mistakenly broke SDP media address rewriting by
      misinterpreting which address was checked in the localnet comparison.
      
      Instead of checking the remote peer address to decide whether we need
      media address rewriting, we check our local media address: if it's
      local, then we rewrite. This feels awkward, but works and even made
      directmedia work properly if you set local_net. (For the record: for
      local peers, the SDP media rewrite code is not called, so the
      comparison does no harm there.)
      
      ASTERISK-27248 #close
      
      Change-Id: I566be1c33f4d0a689567d451ed46bab9c3861d4f
      680aba21
  10. Sep 09, 2017
  11. Sep 08, 2017
  12. Sep 07, 2017
  13. Sep 06, 2017
    • Sean Bright's avatar
      app_waitforsilence: Cleanup & don't treat missing frames as 'noise' · 2b3f903e
      Sean Bright authored
      * WaitForSilence completes successfully if it receives no media in the
        specified timeout, but when acting as WaitForNoise that logic needs
        to be reversed.
      
      * Use standard argument parsing macros and add some error checking for
        invalid values.
      
      * The documentation indicated that the first argument to both
        WaitForSilence and WaitForNoise was required when it was not. Update
        the documentation to reflect that.
      
      * Wrap up some behavior in structs to avoid boolean checks all over the
        place.
      
      ASTERISK-24066 #close
      Reported by: M vd S
      
      Change-Id: I01d40adc5b63342bb5018a1bea2081a0aa191ef9
      2b3f903e
    • Scott Griepentrog's avatar
      chan_sip: when getting sip pvt return failure if not found · 55536442
      Scott Griepentrog authored
      In handle_request_invite, when processing a pickup, a call
      is made to get_sip_pvt_from_replaces to locate the pvt for
      the subscription. The pvt is assumed to be valid when zero
      is returned indicating no error, and is dereferenced which
      can cause a crash if it was not found.
      
      This change checks the not found case and returns -1 which
      allows the calling code to fail appropriately.
      
      ASTERISK-27217 #close
      Reported-by: Bryan Walters
      
      Change-Id: I6bee92b8b8b85fcac3fd66f8c00ab18bc1765612
      55536442
    • Richard Mudgett's avatar
      stasis/control.c: Fix set_interval_hook() ref leak. · 23571f31
      Richard Mudgett authored
      Change-Id: Ia0edb7dc0dbbb879c079ff7000f1b722d86ce7dc
      23571f31
    • George Joseph's avatar
      stasis/control: Fix possible deadlock with swap channel · 94091c7b
      George Joseph authored
      If an error occurs during a bridge impart it's possible that
      the "bridge_after" callback might try to run before
      control_swap_channel_in_bridge has been signalled to continue.
      Since control_swap_channel_in_bridge is holding the control lock
      and the callback needs it, a deadlock will occur.
      
      * control_swap_channel_in_bridge now only holds the control
        lock while it's actually modifying the control structure and
        releases it while the bridge impart is running.
      * bridge_after_cb is now tolerant of impart failures.
      
      Change-Id: Ifd239aa93955b3eb475521f61e284fcb0da2c3b3
      94091c7b
    • George Joseph's avatar
    • Jenkins2's avatar
    • Jenkins2's avatar
    • Vitezslav Novy's avatar
      chan_sip: Do not change IP address in SDP origin line (o=) in SIP reINVITE · 67a2ca31
      Vitezslav Novy authored
      If directmedia=yes is configured, when call is answered, Asterisk sends reINVITE
      to both parties to set up media path directly between the endpoints.
      In this reINVITE msg SDP origin line (o=) contains IP address of endpoint
      instead of IP of asterisk. This behavior violates RFC3264, sec 8:
      "When issuing an offer that modifies the session,
      the "o=" line of the new SDP MUST be identical to that in the
      previous SDP, except that the version in the origin field MUST
      increment by one from the previous SDP."
      This patch assures IP address of Asterisk is always sent in
      SDP origin line.
      
      ASTERISK-17540
      Reported by:  saghul
      
      Change-Id: I533a047490c43dcff32eeca8378b2ba02345b64e
      67a2ca31
Loading