|  | 
| 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_certfail_handler certfail_cb, 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. 
 | 
|  | 
| xmpp_conn_t * | xmpp_conn_clone (xmpp_conn_t *const conn) | 
|  | Clone a Strophe connection object. 
 | 
|  | 
| 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. 
 | 
|  | 
| int | xmpp_conn_release (xmpp_conn_t *const conn) | 
|  | Release a Strophe connection object. 
 | 
|  | 
| const char * | xmpp_conn_get_jid (const xmpp_conn_t *const conn) | 
|  | Get the JID which is or will be bound to the connection. 
 | 
|  | 
| const char * | xmpp_conn_get_bound_jid (const xmpp_conn_t *const conn) | 
|  | Get the JID discovered during binding time. 
 | 
|  | 
| 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. 
 | 
|  | 
| const char * | xmpp_conn_get_pass (const xmpp_conn_t *const conn) | 
|  | Get the password used for authentication of a connection. 
 | 
|  | 
| void | xmpp_conn_set_pass (xmpp_conn_t *const conn, const char *const pass) | 
|  | Set the password used to authenticate the connection. 
 | 
|  | 
| xmpp_ctx_t * | xmpp_conn_get_context (xmpp_conn_t *const conn) | 
|  | Get the strophe context that the connection is associated with. 
 | 
|  | 
| int | xmpp_connect_client (xmpp_conn_t *const conn, const char *const altdomain, unsigned short altport, xmpp_certfail_handler certfail_cb, xmpp_conn_handler callback, void *const userdata) | 
|  | Initiate a connection to the XMPP server. 
 | 
|  | 
| 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. 
 | 
|  | 
| int | xmpp_connect_raw (xmpp_conn_t *const conn, const char *const altdomain, unsigned short altport, xmpp_certfail_handler certfail_cb, xmpp_conn_handler callback, void *const userdata) | 
|  | Initiate a raw connection to the XMPP server. 
 | 
|  | 
| 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. 
 | 
|  | 
| int | xmpp_conn_open_stream (xmpp_conn_t *const conn, char **attributes, size_t attributes_len) | 
|  | Send an opening stream tag. 
 | 
|  | 
| int | xmpp_conn_tls_start (xmpp_conn_t *const conn) | 
|  | Start synchronous TLS handshake with the server. 
 | 
|  | 
| void | conn_disconnect_clean (xmpp_conn_t *const conn) | 
|  | Cleanly disconnect the connection. 
 | 
|  | 
| void | conn_disconnect (xmpp_conn_t *const conn) | 
|  | Disconnect from the XMPP server. 
 | 
|  | 
| 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. 
 | 
|  | 
| void | xmpp_send_raw_string (xmpp_conn_t *const conn, const char *const fmt,...) | 
|  | Send a raw string to the XMPP server. 
 | 
|  | 
| void | xmpp_send_raw (xmpp_conn_t *const conn, const char *const data, const size_t len) | 
|  | Send raw bytes to the XMPP server. 
 | 
|  | 
| void | xmpp_send (xmpp_conn_t *const conn, xmpp_stanza_t *const stanza) | 
|  | Send an XML stanza to the XMPP server. 
 | 
|  | 
| void | conn_open_stream (xmpp_conn_t *const conn) | 
|  | Send the opening <stream:stream> tag to the server. 
 | 
|  | 
| 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. 
 | 
|  | 
| int | xmpp_conn_set_flags (xmpp_conn_t *const conn, long flags) | 
|  | Set flags for the connection. 
 | 
|  | 
| void | xmpp_conn_disable_tls (xmpp_conn_t *const conn) | 
|  | Disable TLS for this connection, called by users of the library. 
 | 
|  | 
| void | xmpp_conn_tlscert_path (xmpp_conn_t *const conn, char *path) | 
|  | 
| int | xmpp_conn_is_secured (xmpp_conn_t *const conn) | 
|  | Return whether TLS session is established or not. 
 | 
|  | 
| xmpp_tlscert_t * | xmpp_conn_tls_peer_cert (xmpp_conn_t *const conn) | 
|  | 
| int | xmpp_conn_tlscert_version (struct _tlscert_t *cert) | 
|  | 
| char * | xmpp_conn_tlscert_serialnumber (struct _tlscert_t *cert) | 
|  | 
| char * | xmpp_conn_tlscert_subjectname (struct _tlscert_t *cert) | 
|  | 
| char * | xmpp_conn_tlscert_issuername (struct _tlscert_t *cert) | 
|  | 
| char * | xmpp_conn_tlscert_fingerprint (struct _tlscert_t *cert) | 
|  | 
| char * | xmpp_conn_tlscert_notbefore (struct _tlscert_t *cert) | 
|  | 
| char * | xmpp_conn_tlscert_notafter (struct _tlscert_t *cert) | 
|  | 
| char * | xmpp_conn_tlscert_signature_algorithm (struct _tlscert_t *cert) | 
|  | 
| char * | xmpp_conn_tlscert_key_algorithm (struct _tlscert_t *cert) | 
|  | 
| void | xmpp_conn_free_tlscert (xmpp_ctx_t *ctx, struct _tlscert_t *cert) | 
|  | 
| static void | _log_open_tag (xmpp_conn_t *conn, char **attrs) | 
|  | 
| static char * | _get_stream_attribute (char **attrs, char *name) | 
|  |