mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-06 13:07:21 +00:00
logger: Adds additional support for call id logging and chan_sip specific stuff
This patch improves the handling of call id logging significantly with regard to transfers and adding APIs to better handle specific aspects of logging. Also, changes have been made to chan_sip in order to better handle the creation of callids and to enable the monitor thread to bind itself to a particular call id when a dialog is determined to be related to a callid. It then unbinds itself before returning to normal monitoring. review: https://reviewboard.asterisk.org/r/1886/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@366842 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -3693,12 +3693,15 @@ void ast_channel_tech_set(struct ast_channel *chan, const struct ast_channel_tec
|
||||
enum ast_channel_adsicpe ast_channel_adsicpe(const struct ast_channel *chan);
|
||||
void ast_channel_adsicpe_set(struct ast_channel *chan, enum ast_channel_adsicpe value);
|
||||
enum ast_channel_state ast_channel_state(const struct ast_channel *chan);
|
||||
struct ast_callid *ast_channel_callid(const struct ast_channel *chan);
|
||||
void ast_channel_callid_set(struct ast_channel *chan, struct ast_callid *value);
|
||||
|
||||
/* XXX Internal use only, make sure to move later */
|
||||
void ast_channel_state_set(struct ast_channel *chan, enum ast_channel_state);
|
||||
void ast_channel_softhangup_internal_flag_set(struct ast_channel *chan, int value);
|
||||
void ast_channel_softhangup_internal_flag_add(struct ast_channel *chan, int value);
|
||||
void ast_channel_softhangup_internal_flag_clear(struct ast_channel *chan, int value);
|
||||
void ast_channel_callid_cleanup(struct ast_channel *chan);
|
||||
int ast_channel_softhangup_internal_flag(struct ast_channel *chan);
|
||||
|
||||
/* Format getters */
|
||||
|
Reference in New Issue
Block a user