Skip to content
Snippets Groups Projects
  1. Nov 07, 2018
  2. Nov 06, 2018
    • Kevin Harwell's avatar
      res_pjsip: formatting error in documentation · 214d0d11
      Kevin Harwell authored
      The use of a '|' in the "global/debug" synopsis documentation caused the
      generated html table on the wiki to add an extra column that included the
      text after the pipe.
      
      This patch replaces the pipe with a comma.
      
      ASTERISK-28150
      
      Change-Id: I3d79a6ca6d733d9cb290e779438114884b98a719
      214d0d11
  3. Nov 05, 2018
    • George Joseph's avatar
    • Joshua Colp's avatar
      stasis: Clarify lifetime of topics. · 2f849978
      Joshua Colp authored
      As mentioned in the comment I've added in the code there is no
      ability to unsubscribe all subscribers from a topic and explicitly
      destroy it. This is not currently a problem as we have two types of
      topics:
      
      Long lived topics which exist for the lifetime of the system.
      Ephemeral topics which feed a long lived topic.
      
      In the case of the ephemeral topics there is no subscriber which does
      not have its lifetime managed by the same entity that has created
      the topic. This ensures that when the topic is being unreferenced the
      subscribers are also unsubscribed and destroyed, allowing the topic
      to ultimately be destroyed as well.
      
      Change-Id: Ic5e244da7b16b1895ba1fc5ece481ebba5809c9a
      2f849978
  4. Nov 02, 2018
  5. Nov 01, 2018
    • Pascal Cadotte Michaud's avatar
      contrib/sip_to_pjsip: add a --quiet option to avoid prints · 0a4e8a43
      Pascal Cadotte Michaud authored
      Using the --quiet or -q option in conjonction with /dev/stdout as the output
      file allow the output to be used as a valid configuration.
      
      Given a script that generates a valid sip.conf I can pipe the output of that
      script into `sip_to_pjsip.py -q /dev/stdin /dev/stdout`. This allow me to use
      that piped command in my pjsip.conf using the `exec` command.
      
      ASTERISK-28136
      
      Change-Id: I7b0e2e90e2549f3f8e01dc96701f111b5874c88d
      Unverified
      0a4e8a43
  6. Oct 31, 2018
  7. Oct 30, 2018
  8. Oct 29, 2018
  9. Oct 26, 2018
    • Alexei Gradinari's avatar
      res_pjsip_notify: improve realtime performance on CLI completion on the endpoint · 82f0a86e
      Alexei Gradinari authored
      The module 'res_pjsip_notify' inefficiently makes a lot of DB requests
      on CLI completion on the endpoint.
      
      For example if there are 10k endpoints the module makes 10k requests
      of these 10k records.
      
      Even if a part of the endpoint entered
      the module makes the same 10k requests and then filtered them by itself.
      
      This patch gathers endpoints container by prefix
      and adds all gathered endpoints to completion at once.
      
      ASTERISK-28137 #close
      
      Change-Id: Ic20024912cc77bf4d3e476c4cd853293c52b254b
      82f0a86e
    • Torrey Searle's avatar
      res_pjsip_session: add new flag use_callerid_contact · bbbec2e9
      Torrey Searle authored
      Add a new global flag to res_pjsip to allow the callerid to be used
      as the username in the contact header.  This allows chan_pjsip to have
      the same behavour as chan_sip
      
      ASTERISK-28087 #close
      
      Change-Id: I9a720e058323f6862a91c62f8a8c1a4b5c087b95
      bbbec2e9
  10. Oct 25, 2018
  11. Oct 24, 2018
  12. Oct 22, 2018
  13. Oct 19, 2018
  14. Oct 18, 2018
  15. Oct 17, 2018
  16. Oct 16, 2018
  17. Oct 15, 2018
  18. Oct 13, 2018
    • Corey Farrell's avatar
      threadpool: Eliminate pointless AO2 usage. · 7c49125f
      Corey Farrell authored
      thread_worker_pair, set_size_data and task_pushed_data structures are
      allocated with AO2 objects, passed to a taskprocessor, then released.
      They never have multiple owners or use locking so AO2 only adds
      overhead.
      
      Change-Id: I2204d2615d9d952670fcb48e0a9c0dd1a6ba5036
      7c49125f
Loading