Skip to content
Snippets Groups Projects
  1. May 20, 2015
    • Matt Jordan's avatar
      doxygen: Fix doxygen errors · d8698b7f
      Matt Jordan authored
      This patch fixes a number of errors and warning messages in the doxygen
      log. Specifically, it addresses:
      * A number of files incorrectly places a '\brief' tag immediately after
        a '\file' tag. Doing so emits a warning, as '\file' takes an optional
        argument specifying which file the doxygen comment is for. As '\brief'
        is not a file, doxygen was unamused.
      * A grouping of Stasis Topics and Messages in rtp_engine.h was
        incorrectly terminated. We now correctly terminate the grouping, which
        prevents members of rtp_engine.h from showing up in the wrong group.
      * Group indicators which are not part of the Stasis Topics and Messages
        group were removed. Group indicators without an \addtogroup or
        \ingroup have no meaning.
      
      Change-Id: Ia1415ffec6767e27233ae1cae5ed5970de5656d4
      d8698b7f
  2. May 18, 2015
  3. May 17, 2015
  4. May 15, 2015
  5. May 14, 2015
  6. May 13, 2015
  7. May 12, 2015
    • Richard Mudgett's avatar
      chan_dahdi/sig_pri: Fix crash on ISDN call hangup collision. · 0bb0d4a6
      Richard Mudgett authored
      If an ISDN call is hungup by both sides at the same time a crash could
      happen.
      
      * Added missing NULL checks for the owner channel after calling
      pri_queue_pvt_cause_data() in two places.  Code after those calls need to
      check the owner channel pointer for NULL before use because
      pri_queue_pvt_cause_data() needs to do deadlock avoidance to lock the
      owner and the owner may get hung up.
      
      ASTERISK-21893 #close
      Reported by:  Alexandr Gordeev
      
      Change-Id: Ica3e266ebc7a894b41d762326f08653e1904bb9a
      0bb0d4a6
    • Joshua Colp's avatar
    • Joshua Colp's avatar
    • Corey Farrell's avatar
      Allow command-line options to override asterisk.conf. · 57386dcb
      Corey Farrell authored
      Previous versions of Asterisk processed command-line options before
      processing asterisk.conf.  This meant that if an option was set in
      asterisk.conf, it could not be overridden with the equivelent command
      line option.  This change causes Asterisk to process the command-line
      twice.  First it processes options that are needed to load asterisk.conf,
      then it processes the remaining options after the config is read.
      
      This changes the function of -X slightly.  Previously using -X without
      disabling execincludes in asterisk.conf caused #exec to be usable in any
      config.  Now -X only enables #exec for the load of asterisk.conf, if it
      is wanted in the rest of the system it must be enabled with execincludes
      in asterisk.conf.  Updated 'asterisk -h' and 'man asterisk' to reflect
      the limited function of -X.
      
      ASTERISK-25042 #close
      Reported by: Corey Farrell
      
      Change-Id: I1450d45c15b4467274b871914d893ed4f6564cd7
      57386dcb
    • George Joseph's avatar
      sorcery: Add API to insert/remove a wizard to/from an object type's list · 52407088
      George Joseph authored
      Currently you can 'apply' a wizard to an object type but the wizard
      always goes at the end of the object type's wizard list.  This patch
      adds a new ast_sorcery_insert_wizard_mapping function that allows
      you to insert a wizard anyplace in the list.  I.E.  You could
      add a caching wizard to an object type and place it before all
      wizards.
      
      ast_sorcery_get_wizard_mapping_count and
      ast_sorcery_get_wizard_mapping were added to allow examination
      of the mapping list.
      
      ast_sorcery_remove_mapping was added to remove a mapping by name.
      
      As part of this patch, the object type's wizard list was converted
      from an ao2_container to an AST_VECTOR_RW.
      
      A new test was added to test_sorcery for this capability.
      
      ASTERISK-25044 #close
      
      Change-Id: I9d2469a9296b2698082c0989e25e6848dc403b57
      52407088
    • Corey Farrell's avatar
      Fix processing of asterisk.conf debug=yes. · cc853dcf
      Corey Farrell authored
      The code which reads asterisk.conf supports processing the debug
      option with ast_true, but ast_true returns -1.  This causes debug
      to still be off, convert to 1 so debug will be on as requested.
      
      ASTERISK-25042
      Reported by: Corey Farrell
      
      Change-Id: I3c898b7d082d914b057e111b9357fde46bad9ed6
      cc853dcf
    • Sebastian Kemper's avatar
      General: Fix recent menuselect-related cross compile regression · c624e4ba
      Sebastian Kemper authored
      MAKE_MENUSELECT currently sets CC to CC, which is the compiler for the
      target platform. But menuselect is to be run on the build system, so
      BUILD_CC needs to be used instead - like it was in the past, before the
      recent changes (https://reviewboard.asterisk.org/r/4370/). This is the
      patch for ASTERISK-25074.
      
      ASTERISK-25074 #close
      Reported by: Sebastian Kemper
      Tested by: Sebastian Kemper
      
      Change-Id: I8a2b1fc5deb6ad2b80f49baca35b1b13d468ebf8
      c624e4ba
    • Joshua Colp's avatar
    • Rodrigo Ramírez Norambuena's avatar
      cdr_pgsql, cel_pgsql: Store maximum buffer size to prevent reallocation · e6daafb8
      Rodrigo Ramírez Norambuena authored
      The code previously used a fixed size of 512 for the SQL
      queries. Depending on the size this may require it to grow.
      
      This change makes it so if the buffer size does grow the size
      is stored and next time the buffer will be large enough.
      
      Change-Id: I55385899f1c06dee47e4274c2d21538037b2d895
      e6daafb8
    • Joshua Colp's avatar
    • Joshua Colp's avatar
Loading