summaryrefslogtreecommitdiff
path: root/include/asterisk/jabber.h
diff options
context:
space:
mode:
authorPhilippe Sultan <philippe.sultan@gmail.com>2008-02-12 14:08:58 +0000
committerPhilippe Sultan <philippe.sultan@gmail.com>2008-02-12 14:08:58 +0000
commitf98f90af49a593134a61ff1ccabb54bb803e6af2 (patch)
tree98aebef5b3ad4ce667971b578728cdfb734cd91c /include/asterisk/jabber.h
parent16a14a4cd87db56f138399a5097647f6890f6037 (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: https://origsvn.digium.com/svn/asterisk/trunk@103341 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk/jabber.h')
-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;