Skip to content
Snippets Groups Projects
  1. Aug 27, 2012
  2. Aug 26, 2012
  3. Aug 23, 2012
  4. Aug 22, 2012
  5. Aug 21, 2012
  6. Aug 20, 2012
  7. Aug 18, 2012
  8. Aug 17, 2012
  9. Aug 16, 2012
  10. Aug 15, 2012
  11. Aug 13, 2012
  12. Aug 11, 2012
  13. Aug 10, 2012
    • Richard Mudgett's avatar
      Update CHANGES for private party ID. · e2cd045c
      Richard Mudgett authored
      ........
      
      Merged revisions 371146 from http://svn.asterisk.org/svn/asterisk/branches/11
      
      
      git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@371147 65c4cc65-6c06-0410-ace0-fbb531ad65f3
      e2cd045c
    • Mark Michelson's avatar
      Fix a couple of documentation problems in app_queue.c · 567b35e5
      Mark Michelson authored
      * The RemoveQueueMember app made mention of options that could
      be passed in, but no options are supported. I have removed the
      listing of options from the documentation.
      
      * The RQMSTATUS variable did not list "NOTDYNAMIC" as a possible
      value that could be set.
      
      (closes issue AST-949)
      reported by Steve Pitts
      
      (closes issue AST-954)
      reported by Steve Pitts
      ........
      
      Merged revisions 371141 from http://svn.asterisk.org/svn/asterisk/branches/1.8
      ........
      
      Merged revisions 371142 from http://svn.asterisk.org/svn/asterisk/branches/10
      ........
      
      Merged revisions 371143 from http://svn.asterisk.org/svn/asterisk/branches/11
      
      
      git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@371144 65c4cc65-6c06-0410-ace0-fbb531ad65f3
      567b35e5
    • Matthew Jordan's avatar
      Remove 10 properties, add 11 properties · 938ba942
      Matthew Jordan authored
      git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@371134 65c4cc65-6c06-0410-ace0-fbb531ad65f3
      938ba942
    • Richard Mudgett's avatar
      Add private representation of caller, connected and redirecting party ids. · fb623889
      Richard Mudgett authored
      This patch adds the feature "Private representation of caller, connected
      and redirecting party ids", as previously discussed with us (DATUS) and
      Digium.
      
      1. Feature motivation
      
      Until now it is quite difficult to modify a party number or name which can
      only be seen by exactly one particular instantiated technology channel
      subscriber.  One example where a modified party number or name on one
      channel is spread over several channels are supplementary services like
      call transfer or pickup.  To implement these features Asterisk internally
      copies caller and connected ids from one channel to another.  Another
      example are extension subscriptions.  The monitoring entities (watchers)
      are notified of state changes and - if desired - of party numbers or names
      which represent the involving call parties.  One major feature where a
      private representation of party names is essentially needed, i.e.  where a
      party name shall be exclusively signaled to only one particular user, is a
      private user-specific name resolution for party numbers.  A lookup in a
      private destination-dependent telephone book shall provide party names
      which cannot be seen by any other user at any time.
      
      2. Feature Description
      
      This feature comes along with the implementation of additional private
      party id elements for caller id, connected id and redirecting ids inside
      Asterisk channels.
      
      The private party id elements can be read or set by the user using
      Asterisk dialplan functions.
      
      When a technology channel is initiating a call, receives an internal
      connected-line update event, or receives an internal redirecting update
      event, it merges the corresponding public id with the private id to create
      an effective party id.  The effective party id is then used for protocol
      signaling.
      
      The channel technologies which initially support the private id
      representation with this patch are SIP (chan_sip), mISDN (chan_misdn) and
      PRI (chan_dahdi).
      
      Once a private name or number on a channel is set and (implicitly) made
      valid, it is generally used for any further protocol signaling until it is
      rewritten or invalidated.
      
      To simplify the invalidation of private ids all internally generated
      connected/redirecting update events and also all connected/redirecting
      update events which are generated by technology channels -- receiving
      regarding protocol information - automatically trigger the invalidation of
      private ids.
      
      If not using the private party id representation feature at all, i.e.  if
      using only the 'regular' caller-id, connected and redirecting related
      functions, the current characteristic of Asterisk is not affected by the
      new extended functionality.
      
      3. User interface Description
      
      To grant access to the private name and number representation from the
      Asterisk dialplan, the CALLERID, CONNECTEDLINE and REDIRECTING dialplan
      functions are extended by the following data types.  The formats of these
      data types are equal to the corresponding regular 'non-private' already
      existing data types:
      
      CALLERID:
      priv-all
      priv-name priv-name-valid priv-name-charset priv-name-pres
      priv-num priv-num-valid priv-num-plan priv-num-pres
      priv-subaddr priv-subaddr-valid priv-subaddr-type priv-subaddr-odd
      priv-tag
      
      CONNECTEDLINE:
      priv-name priv-name-valid priv-name-pres priv-name-charset
      priv-num priv-num-valid priv-num-pres priv-num-plan
      priv-subaddr priv-subaddr-valid priv-subaddr-type priv-subaddr-odd
      priv-tag
      
      REDIRECTING:
      priv-orig-name priv-orig-name-valid priv-orig-name-pres priv-orig-name-charset
      priv-orig-num priv-orig-num-valid priv-orig-num-pres priv-orig-num-plan
      priv-orig-subaddr priv-orig-subaddr-valid priv-orig-subaddr-type priv-orig-subaddr-odd
      priv-orig-tag
      
      priv-from-name priv-from-name-valid priv-from-name-pres priv-from-name-charset
      priv-from-num priv-from-num-valid priv-from-num-pres priv-from-num-plan
      priv-from-subaddr priv-from-subaddr-valid priv-from-subaddr-type priv-from-subaddr-odd
      priv-from-tag
      
      priv-to-name priv-to-name-valid priv-to-name-pres priv-to-name-charset
      priv-to-num priv-to-num-valid priv-to-num-pres priv-to-num-plan
      priv-to-subaddr priv-to-subaddr-valid priv-to-subaddr-type priv-to-subaddr-odd
      priv-to-tag
      
      Reported by: Thomas Arimont
      
      Review: https://reviewboard.asterisk.org/r/2030/
      
      
      git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@371120 65c4cc65-6c06-0410-ace0-fbb531ad65f3
      fb623889
    • Mark Michelson's avatar
      Fix a comparison that was causing presence tests to fail. · 5ff199d9
      Mark Michelson authored
      A recent change made it so that device state changes that were
      not actual "changes" would not get reported to subscribers. The
      problem was that this inadvertently blocked presence updates as
      well.
      
      
      
      git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@371113 65c4cc65-6c06-0410-ace0-fbb531ad65f3
      5ff199d9
    • Alexandr Anikin's avatar
      remove ALREADYGONE flag on ooh323 call data by ooh323_indicate · cb525e5c
      Alexandr Anikin authored
      (CONGESTION/BUSY) due to call hasn't gone there really.
      This indication arrive from asterisk core not h.323 stack
      
      (closes issue ASTERISK-19308)
      Reported by: Dmitry Melekhov
      Patches:
              ASTERISK-19308.patch
      ........
      
      Merged revisions 371089 from http://svn.asterisk.org/svn/asterisk/branches/1.8
      ........
      
      Merged revisions 371090 from http://svn.asterisk.org/svn/asterisk/branches/10
      
      
      git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@371091 65c4cc65-6c06-0410-ace0-fbb531ad65f3
      cb525e5c
Loading