|
static int | _disconnect_cleanup (xmpp_conn_t *const conn, void *const userdata) |
|
static char * | _conn_build_stream_tag (xmpp_conn_t *const conn, char **attributes, size_t attributes_len) |
|
static void | _conn_attributes_new (xmpp_conn_t *conn, char **attrs, char ***attributes, size_t *attributes_len) |
|
static void | _conn_attributes_destroy (xmpp_conn_t *conn, char **attributes, size_t attributes_len) |
|
static void | _handle_stream_start (char *name, char **attrs, void *const userdata) |
|
static void | _handle_stream_end (char *name, void *const userdata) |
|
static void | _handle_stream_stanza (xmpp_stanza_t *stanza, void *const userdata) |
|
static unsigned short | _conn_default_port (xmpp_conn_t *const conn, xmpp_conn_type_t type) |
|
static void | _conn_reset (xmpp_conn_t *const conn) |
|
static int | _conn_connect (xmpp_conn_t *const conn, const char *const domain, const char *const host, unsigned short port, xmpp_conn_type_t type, xmpp_conn_handler callback, void *const userdata) |
|
void | xmpp_send_error (xmpp_conn_t *const conn, xmpp_error_type_t const type, char *const text) |
|
xmpp_conn_t * | xmpp_conn_new (xmpp_ctx_t *const ctx) |
| Create a new Strophe connection object. More...
|
|
xmpp_conn_t * | xmpp_conn_clone (xmpp_conn_t *const conn) |
| Clone a Strophe connection object. More...
|
|
void | xmpp_conn_set_keepalive (xmpp_conn_t *const conn, int timeout, int interval) |
| Set TCP keepalive parameters Turn on TCP keepalive and set timeout and interval. More...
|
|
int | xmpp_conn_release (xmpp_conn_t *const conn) |
| Release a Strophe connection object. More...
|
|
const char * | xmpp_conn_get_jid (const xmpp_conn_t *const conn) |
| Get the JID which is or will be bound to the connection. More...
|
|
const char * | xmpp_conn_get_bound_jid (const xmpp_conn_t *const conn) |
| Get the JID discovered during binding time. More...
|
|
void | xmpp_conn_set_jid (xmpp_conn_t *const conn, const char *const jid) |
| Set the JID of the user that will be bound to the connection. More...
|
|
const char * | xmpp_conn_get_pass (const xmpp_conn_t *const conn) |
| Get the password used for authentication of a connection. More...
|
|
void | xmpp_conn_set_pass (xmpp_conn_t *const conn, const char *const pass) |
| Set the password used to authenticate the connection. More...
|
|
xmpp_ctx_t * | xmpp_conn_get_context (xmpp_conn_t *const conn) |
| Get the strophe context that the connection is associated with. More...
|
|
int | xmpp_connect_client (xmpp_conn_t *const conn, const char *const altdomain, unsigned short altport, xmpp_conn_handler callback, void *const userdata) |
| Initiate a connection to the XMPP server. More...
|
|
int | xmpp_connect_component (xmpp_conn_t *const conn, const char *const server, unsigned short port, xmpp_conn_handler callback, void *const userdata) |
| Initiate a component connection to server. More...
|
|
int | xmpp_connect_raw (xmpp_conn_t *const conn, const char *const altdomain, unsigned short altport, xmpp_conn_handler callback, void *const userdata) |
| Initiate a raw connection to the XMPP server. More...
|
|
void | conn_established (xmpp_conn_t *const conn) |
|
int | xmpp_conn_open_stream_default (xmpp_conn_t *const conn) |
| Send the default opening stream tag. More...
|
|
int | xmpp_conn_open_stream (xmpp_conn_t *const conn, char **attributes, size_t attributes_len) |
| Send an opening stream tag. More...
|
|
int | xmpp_conn_tls_start (xmpp_conn_t *const conn) |
| Start synchronous TLS handshake with the server. More...
|
|
void | conn_disconnect_clean (xmpp_conn_t *const conn) |
| Cleanly disconnect the connection. More...
|
|
void | conn_disconnect (xmpp_conn_t *const conn) |
| Disconnect from the XMPP server. More...
|
|
void | conn_prepare_reset (xmpp_conn_t *const conn, xmpp_open_handler handler) |
|
void | conn_parser_reset (xmpp_conn_t *const conn) |
|
void | xmpp_disconnect (xmpp_conn_t *const conn) |
| Initiate termination of the connection to the XMPP server. More...
|
|
void | xmpp_send_raw_string (xmpp_conn_t *const conn, const char *const fmt,...) |
| Send a raw string to the XMPP server. More...
|
|
void | xmpp_send_raw (xmpp_conn_t *const conn, const char *const data, const size_t len) |
| Send raw bytes to the XMPP server. More...
|
|
void | xmpp_send (xmpp_conn_t *const conn, xmpp_stanza_t *const stanza) |
| Send an XML stanza to the XMPP server. More...
|
|
void | conn_open_stream (xmpp_conn_t *const conn) |
| Send the opening <stream:stream> tag to the server. More...
|
|
int | conn_tls_start (xmpp_conn_t *const conn) |
|
long | xmpp_conn_get_flags (const xmpp_conn_t *const conn) |
| Return applied flags for the connection. More...
|
|
int | xmpp_conn_set_flags (xmpp_conn_t *const conn, long flags) |
| Set flags for the connection. More...
|
|
void | xmpp_conn_disable_tls (xmpp_conn_t *const conn) |
| Disable TLS for this connection, called by users of the library. More...
|
|
int | xmpp_conn_is_secured (xmpp_conn_t *const conn) |
| Return whether TLS session is established or not. More...
|
|
static void | _log_open_tag (xmpp_conn_t *conn, char **attrs) |
|
static char * | _get_stream_attribute (char **attrs, char *name) |
|