aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-06 18:44:19 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-06 18:44:19 +0000
commitf20cdcdc5909812192905bca6465fd46baa88bd2 (patch)
treeb78fef270171a67bb87177a7db00b38a2e572e9a /include/asterisk
parentcd0b9bcfce2ae3c1723407684a339397e9cc95d0 (diff)
Allow gtalk and jingle to use TLS connections again.
Closes issue #9972 git-svn-id: http://svn.digium.com/svn/asterisk/trunk@89041 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk')
-rw-r--r--include/asterisk/jabber.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/asterisk/jabber.h b/include/asterisk/jabber.h
index 504bcddfc..4bb8b9130 100644
--- a/include/asterisk/jabber.h
+++ b/include/asterisk/jabber.h
@@ -181,8 +181,10 @@ struct aji_client_container{
ASTOBJ_CONTAINER_COMPONENTS(struct aji_client);
};
-/*! Send jabber message from connected client to jabber URI */
-int ast_aji_send(struct aji_client *client, const char *address, const char *message);
+/* !Send XML stanza over the established XMPP connection */
+int ast_aji_send(struct aji_client *client, iks *x);
+/*! Send jabber chat message from connected client to jabber URI */
+int ast_aji_send_chat(struct aji_client *client, const char *address, const char *message);
/*! Disconnect jabber client */
int ast_aji_disconnect(struct aji_client *client);
int ast_aji_check_roster(void);