summaryrefslogtreecommitdiff
path: root/message.h
diff options
context:
space:
mode:
authorLuke Bratch <luke@bratch.co.uk>2019-06-11 19:50:17 +0100
committerLuke Bratch <luke@bratch.co.uk>2019-06-11 19:50:17 +0100
commit9db9fb396aaf601bd00f2b62face2693307a0e16 (patch)
tree2c5603a723899c0f5a4ec129cdaee1e5b1f6b556 /message.h
parentf660bbd1bfed3fbd36d684cd2f09ca1520520557 (diff)
Refactoring - rename ircdstrings struct to ircdstate since it doesn't just contain strings.
Diffstat (limited to 'message.h')
-rw-r--r--message.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/message.h b/message.h
index 349a764..b614541 100644
--- a/message.h
+++ b/message.h
@@ -26,12 +26,12 @@
// Process an IRC message that came from the real server.
// Return 1 if we processed it, or 0 if we didn't.
-int processservermessage(SSL *server_ssl, char *str, struct client *clients, int sourcefd, struct ircdstrings *ircdstrings,
+int processservermessage(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);
// 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 ircdstrings *ircdstrings,
+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);
#endif