aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk
diff options
context:
space:
mode:
authorphsultan <phsultan@f38db490-d61c-443f-a65b-d21fe96a405b>2008-02-12 14:08:58 +0000
committerphsultan <phsultan@f38db490-d61c-443f-a65b-d21fe96a405b>2008-02-12 14:08:58 +0000
commit88a07e5d2f96c051f37f92a0c53751c27c38d309 (patch)
tree98aebef5b3ad4ce667971b578728cdfb734cd91c /include/asterisk
parent3847faed34e077909c3f00497c61104740240e0d (diff)
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: http://svn.digium.com/svn/asterisk/trunk@103341 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk')
-rw-r--r--include/asterisk/jabber.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asterisk/jabber.h b/include/asterisk/jabber.h
index 4bb8b9130..5b427cac1 100644
--- a/include/asterisk/jabber.h
+++ b/include/asterisk/jabber.h
@@ -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;