Skip to content
Snippets Groups Projects
  1. Oct 27, 2016
    • Corey Farrell's avatar
      Remove ASTERISK_REGISTER_FILE. · a6e5bae3
      Corey Farrell authored
      ASTERISK_REGISTER_FILE no longer has any purpose so this commit removes
      all traces of it.
      
      Previously exported symbols removed:
      * __ast_register_file
      * __ast_unregister_file
      * ast_complete_source_filename
      
      This also removes the mtx_prof static variable that was declared when
      MTX_PROFILE was enabled.  This variable was only used in lock.c so it
      is now initialized in that file only.
      
      ASTERISK-26480 #close
      
      Change-Id: I1074af07d71f9e159c48ef36631aa432c86f9966
      a6e5bae3
  2. Jun 10, 2015
    • Richard Mudgett's avatar
      DNS: Fix some corner cases. · b23f33e7
      Richard Mudgett authored
      * Fix query_set destruction before we are done kicking the queries off.
      
      * Fixed no queries requested handling.
      
      * Add empty queries request unit test.
      
      * Added missing allocation check in ast_dns_query_set_add().
      
      * Made initial pjsip resolving query vector slightly larger.
      
      ASTERISK-25115
      Reported by: John Bigelow
      
      Change-Id: Ie8be8347d0992e93946d72b6e7b1299727b038f2
      b23f33e7
    • Richard Mudgett's avatar
      DNS: Fix doxygen comments. · 6d49dccd
      Richard Mudgett authored
      Change-Id: Icafea3fb4ea64ac027561b23cbfe2b17997dc549
      6d49dccd
  3. Apr 22, 2015
    • Joshua Colp's avatar
      dns: Make query sets hold on to queries for their lifetime. · 7216e3c6
      Joshua Colp authored
      The query set documentation states that upon completion queries can be
      retrieved for the lifetime of the query set. This is a reasonable
      expectation but does not currently occur. This was originally done
      to resolve a circular reference between queries and query sets, but
      in practice the query can be kept.
      
      This change makes it so a query does not have a reference to the
      query set until it begins resolving. It also makes it so that the
      reference is given up upon the query being completed. This allows
      the queries to remain for the lifetime of the query set. As the
      query set on the query is only useful to the query set functionality
      and only for the lifetime that the query is resolving this is safe
      to do.
      
      ASTERISK-24994 #close
      Reported by: Joshua Colp
      
      Change-Id: I54e09c0cb45475896654e7835394524e816d1aa0
      7216e3c6
  4. Apr 15, 2015
    • Joshua Colp's avatar
      res_pjsip: Add external PJSIP resolver implementation using core DNS API. · a3cec44a
      Joshua Colp authored
      This change adds the following:
      
      1. A query set implementation. This is an API that allows queries to be executed in parallel and once all have completed a callback is invoked.
      2. Unit tests for the query set implementation.
      3. An external PJSIP resolver which uses the DNS core API to do NAPTR, SRV, AAAA, and A lookups.
      
      For the resolver it will do NAPTR, SRV, and AAAA/A lookups in parallel. If NAPTR or SRV
      are available it will then do more queries. And so on. Preference is NAPTR > SRV > AAAA/A,
      with IPv6 preferred over IPv4. For transport it will prefer TLS > TCP > UDP if no explicit
      transport has been provided. Configured transports on the system are taken into account to
      eliminate resolved addresses which have no hope of completing.
      
      ASTERISK-24947 #close
      Reported by: Joshua Colp
      
      Change-Id: I56cb03ce4f9d3d600776f36928e0b3e379b5d71e
      a3cec44a
  5. Apr 13, 2015
    • Matt Jordan's avatar
      git migration: Refactor the ASTERISK_FILE_VERSION macro · 4a582616
      Matt Jordan authored
      Git does not support the ability to replace a token with a version
      string during check-in. While it does have support for replacing a
      token on clone, this is somewhat sub-optimal: the token is replaced
      with the object hash, which is not particularly easy for human
      consumption. What's more, in practice, the source file version was often
      not terribly useful. Generally, when triaging bugs, the overall version
      of Asterisk is far more useful than an individual SVN version of a file. As a
      result, this patch removes Asterisk's support for showing source file
      versions.
      
      Specifically, it does the following:
      
      * Rename ASTERISK_FILE_VERSION macro to ASTERISK_REGISTER_FILE, and
        remove passing the version in with the macro. Other facilities
        than 'core show file version' make use of the file names, such as
        setting a debug level only on a specific file. As such, the act of
        registering source files with the Asterisk core still has use. The
        macro rename now reflects the new macro purpose.
      
      * main/asterisk:
        - Refactor the file_version structure to reflect that it no longer
          tracks a version field.
        - Remove the "core show file version" CLI command. Without the file
          version, it is no longer useful.
        - Remove the ast_file_version_find function. The file version is no
          longer tracked.
        - Rename ast_register_file_version/ast_unregister_file_version to
          ast_register_file/ast_unregister_file, respectively.
      
      * main/manager: Remove value from the Version key of the ModuleCheck
        Action. The actual key itself has not been removed, as doing so would
        absolutely constitute a backwards incompatible change. However, since
        the file version is no longer tracked, there is no need to attempt to
        include it in the Version key.
      
      * UPGRADE: Add notes for:
        - Modification to the ModuleCheck AMI Action
        - Removal of the "core show file version" CLI command
      
      Change-Id: I6cf0ff280e1668bf4957dc21f32a5ff43444a40e
      4a582616
  6. Mar 25, 2015
Loading