Skip to content
Snippets Groups Projects
  1. Oct 08, 2015
    • Richard Mudgett's avatar
      configure: Fix check for libunbound to require v1.5.0 as minimum. · ca030845
      Richard Mudgett authored
      Versions of libunbound before v1.4.21 do not compile with Asterisk.
      However, since v1.4.21 has a configure script bug that fails to detect the
      ldns library (which is fixed in v1.4.22) and v1.4.22 is not an easily
      detectable version we will require v1.5.0 as a minimum version of the
      library to work with Asterisk.
      
      ASTERISK-25108 #close
      Reported by: Richard Mudgett
      
      Change-Id: Ieb228bfb01467573fc121c7356a9dde27128894d
      ca030845
  2. Oct 07, 2015
    • Joshua Colp's avatar
    • StefanEng86's avatar
      res/res_rtp_asterisk.c: Fix incorrect assignment of frame->subclass.frame_ending · cc131832
      StefanEng86 authored
      In ast_rtp_read, the value of the variable 'mark' which we try to assign to a
      frame->subclass.frame_ending may be 0, 1 or (1<<23), but we should translate
      it to 0 or 1.
      
      ASTERISK-25451 #close
      Change-Id: I53bdf5c026041730184a6a809009c028549ce626
      cc131832
    • Ivan Poddubny's avatar
      func_presencestate: Return "not_set" when no data is set in AstDB · c944263e
      Ivan Poddubny authored
      Return AST_PRESENCE_NOT_SET when CustomPresence AstDB key does not
      exist, i.e. when a new CustomPresence is added in the dialplan.
      
      ASTERISK-25400 #close
      Reported by: Andrew Nagy
      
      Change-Id: I6fb17b16591b5a55fbffe96f3994ec26b1b1723a
      c944263e
    • Matt Jordan's avatar
      res/res_rtp_asterisk: Fix assignment after ao2 decrement · 4bf395e8
      Matt Jordan authored
      When we decide we will no longer schedule an RTCP write, we remove the
      reference to the RTP instance, then assign -1 to the stored scheduler ID
      in case something else comes along and wants to see if anything is scheduled.
      
      That scheduler ID is on the RTP instance. After 60a9172d was merged to
      fix the regression introduced by 3cf0f293, this improper assignment on a
      potentially destroyed object started getting tripped on the build agents.
      
      Frankly, this should have been crashing a lot more often earlier. I can only
      assume that the timing was changed just enough by both changes to start
      actually hitting this problem.
      
      As it is, simply moving the assignment prior to the ao2 deference is sufficient
      to keep the RTP instance from being referenced when it is very, truly,
      aboslutely dead.
      
      (Note that it is still good practice to assign -1 to the scheduler ID when we
      know we won't be scheduling it again, as the ao2 deref *may* not always destroy
      the ao2 object.)
      
      ASTERISK-25449
      
      Change-Id: Ie6d3cb4adc7b1a6c078b1c38c19fc84cf787cda7
      4bf395e8
  3. Oct 06, 2015
    • Florian Sauerteig's avatar
      chan_sip: Fix port parsing for IPv6 addresses in SIP Via headers. · 3ec9cf7d
      Florian Sauerteig authored
      If a Via header containes an IPv6 address and a port number is ommitted,
      as it is the standard port, we now leave the port empty and to not set it
      to the value after the first colon of the IPv6 address.
      
      ASTERISK-25443 #close
      
      Change-Id: Ie3c2f05471cd006bf04ed15598589c09577b1e70
      3ec9cf7d
    • Matt Jordan's avatar
    • Matt Jordan's avatar
      Fix improper usage of scheduler exposed by 5c713fdf · 8cb614fe
      Matt Jordan authored
      When 5c713fdf was merged, it allowed for scheduled items to have an ID of
      '0' returned. While this was valid per the documentation for the API, it was
      apparently never returned previously. As a result, several users of the
      scheduler API viewed the result as being invalid, causing them to reschedule
      already scheduled items or otherwise fail in interesting ways.
      
      This patch corrects the users such that they view '0' as valid, and a returned
      ID of -1 as being invalid.
      
      Note that the failing HEP RTCP tests now pass with this patch. These tests
      failed due to a duplicate scheduling of the RTCP transmissions.
      
      ASTERISK-25449 #close
      
      Change-Id: I019a9aa8b6997584f66876331675981ac9e07e39
      8cb614fe
  4. Oct 05, 2015
    • Debian Amtelco's avatar
      chan_pjsip: Add Referred-By header to the PJSIP REFER packet. · c6b0d602
      Debian Amtelco authored
      Some systems require the REFER packet to include a Referred-By header.
      If the channel variable SIPREFERREDBYHDR is set, it passes that value as the
      Referred-By header value.  Otherwise, it adds the current dialog’s local info.
      
      Reported by: Dan Cropp
      Tested by: Dan Cropp
      
      Change-Id: I3d17912ce548667edf53cb549e88a25475eda245
      c6b0d602
  5. Oct 03, 2015
    • Ivan Poddubny's avatar
      manager: Fix GetConfigJSON returning invalid JSON · 89dec767
      Ivan Poddubny authored
      When GetConfigJSON was introduced back in 1.6, it returned each
      section as an array of strings: ["key=value", "key2=value2"].
      Afterwards, it was changed a few times and became
      ["key": "value", "key2": "value2"], which is not a correct JSON.
      This patch fixes that by constructing a JSON object {} instead of
      an array [].
      
      Also, the keys "istemplate" and "tempates" that are used to
      indicate templates and their inherited categories are now wrapped in
      quotes.
      
      ASTERISK-25391 #close
      Reported by: Bojan Nemčić
      
      Change-Id: Ibbe93c6a227dff14d4a54b0d152341857bcf6ad8
      89dec767
  6. Oct 02, 2015
  7. Oct 01, 2015
    • Richard Mudgett's avatar
      res_sorcery_memory_cache.c: Fix deadlock with scheduler. · 1b80dbeb
      Richard Mudgett authored
      A deadlock can happen when a sorcery object is being expired from the
      memory cache when at the same time another object is being placed into the
      memory cache.  There are a couple other variations on this theme that
      could cause the deadlock.  Basically if an object is being expired from
      the sorcery memory cache at the same time as another thread tries to
      update the next object expiration timer the deadlock can happen.
      
      * Add a deadlock avoidance loop in expire_objects_from_cache() to check if
      someone is trying to remove the scheduler callback from the scheduler.
      
      ASTERISK-25441 #close
      
      Change-Id: Iec7b0bdb81a72b39477727b1535b2539ad0cf4dc
      1b80dbeb
    • Richard Mudgett's avatar
      res_sorcery_memory_cache.c: Replace inline code with function. · 9c1ca287
      Richard Mudgett authored
      Make sorcery_memory_cache_close() call remove_all_from_cache() instead of
      partially inlining it.
      
      ASTERISK-25441
      
      Change-Id: I1aa6cb425b1a4307096f3f914d17af8ec179a74c
      9c1ca287
    • Richard Mudgett's avatar
      res_sorcery_memory_cache.c: Shutdown in a less crash potential order. · 6554a3b2
      Richard Mudgett authored
      Basically you should shutdown in the opposite order of how you setup since
      later setup pieces likely depend on earlier setup pieces.  e.g.,
      Registering your external API with the rest of the system should be the
      last thing setup and the first thing unregistered during shutdown.
      
      Change-Id: I5715765b723100c8d3c2642e9e72cc7ad5ad115e
      6554a3b2
    • Richard Mudgett's avatar
      res_sorcery_memory_cache.c: Misc tweaks. · 359394cc
      Richard Mudgett authored
      Change-Id: I8cd32dffbb4f33bb0c39518d6e4c991e73573160
      359394cc
    • Richard Mudgett's avatar
      res_sorcery_memory_cache.c: Made use OBJ_SEARCH_MASK. · 7942d1c2
      Richard Mudgett authored
      Change-Id: Ibca6574dc3c213b29cc93486e01ccd51f5caa46c
      7942d1c2
  8. Sep 30, 2015
  9. Sep 29, 2015
  10. Sep 28, 2015
  11. Sep 25, 2015
    • Scott Griepentrog's avatar
      Scripts: check file versions of Asterisk and dependencies · d6472d96
      Scott Griepentrog authored
      To help in diagnosing mismatched modules and libraries, this
      script scans for version, repository, and source information
      and reports what is found.
      
      ASTERISK-25376 #close
      Reported by: Ashley Sanders
      
      Change-Id: Ib0642d0fb96712476f59760d6d137a24633fe2d6
      d6472d96
    • Richard Mudgett's avatar
      app_queue.c: Force COLP update if outgoing channel name changed. · 7c7a7ddd
      Richard Mudgett authored
      * When a call is answered and the outgoing channel name has changed then
      force a connected line update because the channel is no longer the same.
      The channel was masqueraded into by another channel.  This is usually
      because of a call pickup.
      
      Note: Forwarded calls are handled in a controlled manner so the original
      channel name is replaced with the forwarded channel.
      
      ASTERISK-25423 #close
      Reported by: John Hardin
      
      Change-Id: Ie275ea9e99c092ad369db23e0feb08c44498c172
      7c7a7ddd
    • Richard Mudgett's avatar
      app_queue.c: Factor out a connected line update routine. · 145608bd
      Richard Mudgett authored
      Replace inlined code with update_connected_line_from_peer().
      
      ASTERISK-25423
      Reported by: John Hardin
      
      Change-Id: I33bbd033596fcb0208d41d8970369b4e87b806f3
      145608bd
    • Richard Mudgett's avatar
      app_dial.c: Make 'A' option pass COLP updates. · 1d394774
      Richard Mudgett authored
      While the 'A' option is playing the announcement file allow the caller and
      peer to exchange COLP update frames.
      
      ASTERISK-25423
      Reported by: John Hardin
      
      Change-Id: Iac6cf89b56d26452c6bb88e9363622bbf23895f9
      1d394774
Loading