aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authoroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-07 09:00:44 +0000
committeroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-07 09:00:44 +0000
commit5198798e6935478655062071f2aff46dfc65b769 (patch)
tree54277efd65885c8eb96ccdda36bef022348f6f06 /include
parentcb6441b10eeeca4ca7080af19e3bde0d016c3db1 (diff)
Issue #9738 - Make sure we can unload res_jabber. Patch by phsultan - thanks!
Due to a bug in the iksemel library, this will not work if you are using GTLS in the connection. That's being investigated. If you figure out a way to handle that without us having to patch iksemel, let us know in the bug report. Thanks. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@67993 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/jabber.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/asterisk/jabber.h b/include/asterisk/jabber.h
index 8d7662f97..181fc1a14 100644
--- a/include/asterisk/jabber.h
+++ b/include/asterisk/jabber.h
@@ -24,7 +24,8 @@
#include "asterisk/linkedlists.h"
enum aji_state {
- AJI_DISCONNECTED = 0,
+ AJI_DISCONNECTING,
+ AJI_DISCONNECTED,
AJI_CONNECTING,
AJI_CONNECTED
};