Skip to content
Snippets Groups Projects
  1. Oct 01, 2015
  2. Sep 30, 2015
    • Joshua Colp's avatar
      res_rtp_asterisk: Move "Set role" warning to be debug. · 9f229d6a
      Joshua Colp authored
      In practice the set_role API callback can be invoked even
      when no ICE is present on an RTP instance. This can occur
      if ICE has not been enabled on it.
      
      ASTERISK-25438 #close
      
      Change-Id: I0e17e4316f0f0d7f095c78c3d4fd73a913b6ba69
      9f229d6a
  3. Sep 29, 2015
  4. Sep 28, 2015
  5. Sep 25, 2015
  6. Sep 24, 2015
    • Mark Michelson's avatar
      logger: Prevent duplicate dynamic channels from being added. · 3eefa07a
      Mark Michelson authored
      There was a problem observed where the "logger add channel" CLI command
      would allow for a channel with the same name to be added multiple times.
      This would result in each message being written out to the same file
      multiple times.
      
      The problem was due to the difference in how logger channel filenames
      are stored versus the format they are allowed to be presented when they
      are added. For instance, if adding the logger channel "foo" through the
      CLI, the result would be a logger channel with the file name
      /var/log/asterisk/foo being stored. So when trying to add another "foo"
      channel, "foo" would not match "/var/log/asterisk/foo" so we'd happily
      add the duplicate channel.
      
      The fix presented here is to introduce two new methods in the logger
      code:
       * make_filename(): given a logger channel name, this creates the
         filename for that logger channel.
       * find_logchannel(): given a logger channel name, this calls
         make_filename() and then traverses the list of logchannels in order
         to find a match.
      
      This change has made use of make_filename() and find_logchannel()
      throughout to more consistently behave.
      
      ASTERISK-25305 #close
      Reported by Mark Michelson
      
      Change-Id: I892d52954d6007d8bc453c3cbdd9235dec9c4a36
      3eefa07a
    • Mark Michelson's avatar
      Do not swallow frames on channels leaving bridges. · f42084be
      Mark Michelson authored
      When leaving a bridge, indications on a channel could be swallowed by
      the internal indication logic because it appears that the channel is on
      its way to be hung up anyway. One such situation where this is
      detrimental is when channels on hold are redirected out of a bridge. The
      AST_CONTROL_UNHOLD indication from the bridging code is swallowed,
      leaving the channel in question to still appear to be on hold.
      
      The fix here is to modify the logic inside ast_indicate_data() to not
      drop the indication if the channel is simply leaving a bridge. This way,
      channels on hold redirected out of a bridge revert to their expected "in
      use" state after the redirection.
      
      ASTERISK-25418 #close
      Reported by Mark Michelson
      
      Change-Id: If6115204dfa0551c050974ee138fabd15f978949
      f42084be
  7. Sep 23, 2015
  8. Sep 22, 2015
    • Richard Mudgett's avatar
      app_page.c: Fix crash when forwarding with a predial handler. · 06f4f80a
      Richard Mudgett authored
      Page uses the async method of dialing with the dial API.  When a call gets
      forwarded there is no calling channel available.  If the predial handler
      was set then the calling channel could not be put into auto-service
      for the forwarded call because it doesn't exist.  A crash is the result.
      
      * Moved the callee predial parameter string processing to before the
      string is passed to the dial API rather than having the dial API do it.
      There are a few benefits do doing this.  The first is the predial
      parameter string processing doesn't need to be done for each channel
      called by the dial API.  The second is in async mode and the forwarded
      channel is to have the predial handler executed on it then the
      non-existent calling channel does not need to be present to process the
      predial parameter string.
      
      * Don't start auto-service on a non-existent calling channel to execute
      the predial handler when the dial API is in async mode and forwarding a
      call.
      
      ASTERISK-25384 #close
      Reported by: Chet Stevens
      
      Change-Id: If53892b286d29f6cf955e2545b03dcffa2610981
      06f4f80a
    • Matt Jordan's avatar
    • Matt Jordan's avatar
      ARI: Add the ability to subscribe to all events · b99a7052
      Matt Jordan authored
      This patch adds the ability to subscribe to all events. There are two possible
      ways to accomplish this:
      (1) On initial WebSocket connection. This patch adds a new query parameter,
          'subscribeAll'. If present and True, Asterisk will subscribe the
          applications to all ARI events.
      (2) Via the applications resource. When subscribing in this manner, an ARI
          client should merely specify a blank resource name, i.e., 'channels:'
          instead of 'channels:12354'. This will subscribe the application to all
          resources of the 'channels' type.
      
      ASTERISK-24870 #close
      
      Change-Id: I4a943b4db24442cf28bc64b24bfd541249790ad6
      b99a7052
    • Matt Jordan's avatar
    • Joshua Colp's avatar
  9. Sep 21, 2015
    • Kevin Harwell's avatar
      app_record: RECORDED_FILE variable not being populated · c7410150
      Kevin Harwell authored
      The RECORDED_FILE variable is empty unless a '%d' is specified in the filename.
      This patch makes it so the variable is always set to the filename.
      
      ASTERISK-25410 #close
      
      Change-Id: I4ec826d8eb582ae2ad184e717be8668b74d37653
      c7410150
    • Joshua Colp's avatar
      4c2b7761
    • Elazar Broad's avatar
      core/logging: Fix logging to more than one syslog channel · a29cf45c
      Elazar Broad authored
      Currently, Asterisk will log to the last configured syslog
      channel in logger.conf. This is due to the fact that the
      final call to openlog() supersedes all of the previous calls.
      This commit removes the call to openlog() and passes the
      facility to ast_log_vsyslog(), along with utilizing the
      LOG_MAKEPRI macro to ensure that the message is routed to
      the correct facility and with the correct priority.
      
      ASTERISK-25407 #close
      Reported by: Elazar Broad
      Tested by: Elazar Broad
      
      Change-Id: Ie2a2416bc00cce1b04e99ef40917c2011953ddd2
      a29cf45c
    • Matt Jordan's avatar
      res/res_stasis_device_state: Allow for subscribing to 'all' device state · 47813cc5
      Matt Jordan authored
      This patch adds support for subscribing to all device state changes. This is
      done either by subscribing to an empty device, e.g., 'eventSource=deviceState:',
      or by the WebSocket connection specifying that it wants all state in the
      system.
      
      ASTERISK-24870
      
      Change-Id: I9cfeca1c9e2231bd7ea73e45919111d44d2eda32
      47813cc5
    • Matt Jordan's avatar
      ARI: Add events for Contact and Peer Status changes · 5206aa9d
      Matt Jordan authored
      This patch adds support for receiving events regarding Peer status changes
      and Contact status changes. This is particularly useful in scenarios where
      we are subscribed to all endpoints and channels, where we often want to know
      more about the state of channel technology specific items than a single
      endpoint's state.
      
      ASTERISK-24870
      
      Change-Id: I6137459cdc25ce27efc134ad58abf065653da4e9
      5206aa9d
Loading