diff options
author | James Booth <boothj5@gmail.com> | 2014-01-25 21:25:35 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2014-01-25 21:25:35 +0000 |
commit | 6a15a09ed7322c70021b827f1d40cbab4f98c89e (patch) | |
tree | 34bbc438920ecb126a57110c394534d60eef9754 /src | |
parent | d8a92f933b0356375030f06a903a53b7e3a0aba7 (diff) | |
download | profani-tty-6a15a09ed7322c70021b827f1d40cbab4f98c89e.tar.gz |
Renamed xmpp roster handlers
Diffstat (limited to 'src')
-rw-r--r-- | src/xmpp/roster.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/xmpp/roster.c b/src/xmpp/roster.c index a70436e7..68e34e63 100644 --- a/src/xmpp/roster.c +++ b/src/xmpp/roster.c @@ -47,9 +47,9 @@ typedef struct _group_data { } GroupData; // event handlers -static int _roster_handle_push(xmpp_conn_t * const conn, +static int _roster_set_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza, void * const userdata); -static int _roster_handle_result(xmpp_conn_t * const conn, +static int _roster_result_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza, void * const userdata); // id handlers @@ -68,8 +68,8 @@ roster_add_handlers(void) { xmpp_conn_t * const conn = connection_get_conn(); xmpp_ctx_t * const ctx = connection_get_ctx(); - HANDLE(STANZA_TYPE_SET, _roster_handle_push); - HANDLE(STANZA_TYPE_RESULT, _roster_handle_result); + HANDLE(STANZA_TYPE_SET, _roster_set_handler); + HANDLE(STANZA_TYPE_RESULT, _roster_result_handler); } void @@ -206,7 +206,7 @@ _group_remove_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza, } static int -_roster_handle_push(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza, +_roster_set_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza, void * const userdata) { xmpp_stanza_t *query = @@ -270,7 +270,7 @@ _roster_handle_push(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza, } static int -_roster_handle_result(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza, +_roster_result_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza, void * const userdata) { const char *id = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_ID); |