Removed XMPPClient args
This commit is contained in:
@@ -4,11 +4,11 @@
|
||||
#include "server/stanza.h"
|
||||
#include "server/xmppclient.h"
|
||||
|
||||
typedef void (*stream_start_func)(XMPPClient *client);
|
||||
typedef void (*auth_func)(XMPPStanza *stanza, XMPPClient *client);
|
||||
typedef void (*id_func)(const char *id, XMPPClient *client);
|
||||
typedef void (*stream_start_func)(void);
|
||||
typedef void (*auth_func)(XMPPStanza *stanza);
|
||||
typedef void (*id_func)(const char *id);
|
||||
|
||||
void parser_init(XMPPClient *client, stream_start_func startcb, auth_func authcb, id_func);
|
||||
void parser_init(stream_start_func startcb, auth_func authcb, id_func);
|
||||
int parser_feed(char *chunk, int len);
|
||||
void parser_close(void);
|
||||
void parser_reset(void);
|
||||
|
||||
Reference in New Issue
Block a user