diff options
author | Luke Bratch <luke@bratch.co.uk> | 2019-06-17 01:46:28 +0100 |
---|---|---|
committer | Luke Bratch <luke@bratch.co.uk> | 2019-06-17 01:46:28 +0100 |
commit | c70cd5cccc966a35f175913f2281ce251fd62425 (patch) | |
tree | cd95e1bbb28ad4df94db87b9e3080cb05d00645b /message.h | |
parent | fa37193c83f82784e826b8477ee7d4a4cd96d7cf (diff) |
Implement a per-client identifier so auto replay can replay everything a given client has missed.
Diffstat (limited to 'message.h')
-rw-r--r-- | message.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,6 +32,6 @@ int processservermessage(SSL *server_ssl, char *str, struct client *clients, int // Process an IRC message that came from a client. // Return 1 if we processed it, or 0 if we didn't. int processclientmessage(SSL *server_ssl, char *str, struct client *clients, int sourcefd, struct ircdstate *ircdstate, - struct channel *channels, struct settings *settings, char tokens[MAXTOKENS][MAXDATASIZE], int counter); + struct channel *channels, struct settings *settings, char tokens[MAXTOKENS][MAXDATASIZE], int counter, struct clientcodes *clientcodes); #endif |