mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 03:50:31 +00:00
Logger: Convert 'struct ast_callid' to unsigned int.
Switch logger callid's from AO2 objects to simple integers. This helps in two ways. Copying integers is faster than referencing AO2 objects, so this will result in a small reduction in logger overhead. This also erases the possibility of an infinate loop caused by an invalid callid in threadstorage. ASTERISK-24833 #comment Committed callid conversion to trunk. Reported by: Corey Farrell Review: https://reviewboard.asterisk.org/r/4466/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@432834 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -991,7 +991,7 @@ struct sip_msg_hdr {
|
||||
struct sip_pvt {
|
||||
struct sip_pvt *next; /*!< Next dialog in chain */
|
||||
enum invitestates invitestate; /*!< Track state of SIP_INVITEs */
|
||||
struct ast_callid *logger_callid; /*!< Identifier for call used in log messages */
|
||||
ast_callid logger_callid; /*!< Identifier for call used in log messages */
|
||||
int method; /*!< SIP method that opened this dialog */
|
||||
AST_DECLARE_STRING_FIELDS(
|
||||
AST_STRING_FIELD(callid); /*!< Global CallID */
|
||||
|
Reference in New Issue
Block a user