struct switch_caller_extension {
/*! The name of the extension */
char *extension_name;
/*! The number of the extension */
char *extension_number;
/*! Pointer to the current application for this extension */
switch_caller_application_t *current_application;
/*! Pointer to the last application for this extension */
switch_caller_application_t *last_application;
/*! Pointer to the entire stack of applications for this extension */
switch_caller_application_t *applications;
struct switch_caller_profile *children;
struct switch_caller_extension *next;
};
Dialplan的xml结构体switch_caller_extension_t
最新推荐文章于 2022-09-27 14:27:53 发布
本文介绍了一个具体的结构体定义,该结构体用于描述电话系统的扩展名相关信息,包括扩展名的名称、号码、当前应用、上一个应用及应用堆栈等属性。
569

被折叠的 条评论
为什么被折叠?



