mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-20 16:50:14 +00:00
Use an ast_flags structure in aji_client and aji_buddy rather than an
integer. Modify calls to various ast_*_flag macros accordingly. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@103341 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -126,7 +126,7 @@ struct aji_buddy {
|
||||
char channel[160];
|
||||
struct aji_resource *resources;
|
||||
enum aji_btype btype;
|
||||
unsigned int flags;
|
||||
struct ast_flags flags;
|
||||
};
|
||||
|
||||
struct aji_buddy_container {
|
||||
@@ -167,7 +167,7 @@ struct aji_client {
|
||||
int timeout;
|
||||
int message_timeout;
|
||||
int authorized;
|
||||
unsigned int flags;
|
||||
struct ast_flags flags;
|
||||
int component; /* 0 client, 1 component */
|
||||
struct aji_buddy_container buddies;
|
||||
AST_LIST_HEAD(messages,aji_message) messages;
|
||||
|
||||
Reference in New Issue
Block a user