Set auth properties on XMPPClient

This commit is contained in:
James Booth
2015-05-15 00:58:34 +01:00
parent 62ba2f7ae5
commit 34aca16d4a
7 changed files with 49 additions and 10 deletions

View File

@@ -7,7 +7,9 @@ typedef struct xmpp_client_t {
char *ip;
int port;
int sock;
char *nickname;
char *username;
char *password;
char *resource;
} XMPPClient;
XMPPClient* xmppclient_new(struct sockaddr_in client_addr, int socket);