X-Git-Url: http://git.cascardo.eti.br/?a=blobdiff_plain;f=xmpp.h;h=706f15c43d113ad98cad67a8df87f390236355a4;hb=8729c58972d65ab4b4b7ef3da9bcaf0d7f237d4c;hp=74cee4afd054fe43df7788f759de8099dd0f28e6;hpb=ded734abecf69e281222c987dc201586a46199e1;p=cascardo%2Fhcxmpp.git diff --git a/xmpp.h b/xmpp.h index 74cee4a..706f15c 100644 --- a/xmpp.h +++ b/xmpp.h @@ -22,12 +22,22 @@ #include +enum +{ + HC_XMPP_NONE, + HC_XMPP_AUTHENTICATED, + HC_XMPP_BOUND, + HC_XMPP_SESSION +}; + typedef struct _hc_xmpp_t hc_xmpp_t; #define HC_XMPP_NS_TLS "urn:ietf:params:xml:ns:xmpp-tls" #define HC_XMPP_NS_SASL "urn:ietf:params:xml:ns:xmpp-sasl" +#define HC_XMPP_NS_BIND "urn:ietf:params:xml:ns:xmpp-bind" +#define HC_XMPP_NS_SESSION "urn:ietf:params:xml:ns:xmpp-session" -hc_xmpp_t * hc_xmpp_new (void); +hc_xmpp_t * hc_xmpp_new (iksStreamHook *, char *, char *, char *); int hc_xmpp_is_tls_supported (hc_xmpp_t *); int hc_xmpp_is_tls_required (hc_xmpp_t *); int hc_xmpp_is_tls_optional (hc_xmpp_t *); @@ -36,6 +46,14 @@ int hc_xmpp_is_sasl_supported (hc_xmpp_t *); int hc_xmpp_is_sasl_required (hc_xmpp_t *); int hc_xmpp_is_sasl_optional (hc_xmpp_t *); int hc_xmpp_is_sasl_enabled (hc_xmpp_t *); +int hc_xmpp_is_bind_supported (hc_xmpp_t *); +int hc_xmpp_is_session_supported (hc_xmpp_t *); +int hc_xmpp_is_session_required (hc_xmpp_t *); +char *hc_xmpp_server (hc_xmpp_t *); +void hc_xmpp_send_buffer (hc_xmpp_t *, char *, size_t); +void hc_xmpp_send_iks (hc_xmpp_t *, iks *); +void hc_xmpp_read_and_parse (hc_xmpp_t *); void hc_xmpp_features (hc_xmpp_t *, iks *); +int hc_xmpp_status (hc_xmpp_t *); #endif