Skip to content
Snippets Groups Projects
  1. 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
  2. Apr 11, 2015
  3. Jul 24, 2012
  4. Aug 16, 2011
  5. Jul 14, 2011
  6. Jul 19, 2010
  7. Jul 09, 2010
  8. Mar 25, 2010
    • Mark Michelson's avatar
      Add unit test for testing ACL functionality. · 49e2cd42
      Mark Michelson authored
      There are two unit tests contained here.
      
      1. "Invalid ACL" This attempts to read a bunch of badly formatted ACL entries
      and add them to a host access rule. The goal of this test is to be sure that
      all invalid entries are rejected as they should be.
      
      2. "ACL" This sets up four ACLs. One is a permit all, one is a deny all, and
      the other two have specific rules about which subnets are allowed and which
      are not. Then a set of test addresses is used to determine whether we would
      allow those addresses to access us when each ACL is applied. This test, by the
      way, was what resulted in AST-2010-003's creation.
      
      Review: https://reviewboard.asterisk.org/r/532
      
      
      
      git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@254557 65c4cc65-6c06-0410-ace0-fbb531ad65f3
      49e2cd42
Loading