diff options
author | Luke Bratch <luke@bratch.co.uk> | 2019-06-12 21:35:09 +0100 |
---|---|---|
committer | Luke Bratch <luke@bratch.co.uk> | 2019-06-12 21:35:09 +0100 |
commit | 1b7abf6ee18697e28140a237df31426da37b594c (patch) | |
tree | 12f69d273de971ee1352c0546ea9058d7b94fa62 /message.c | |
parent | 0bea530df3f718b34a1022a871f4f78a41c2bee6 (diff) |
Don't pass server PONGs to clients.
Diffstat (limited to 'message.c')
-rw-r--r-- | message.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -722,6 +722,12 @@ int processservermessage(SSL *server_ssl, char *str, struct client *clients, int debugprint(DEBUG_FULL, "Server NOTICE does not appear to be from a user, passing through.\n"); } } + + // Server PONG received? This is probably in response to our PING to see if we're still connected, discard it. + if (strncmp(tokens[1], "PONG", strlen(tokens[1])) == 0) { + debugprint(DEBUG_FULL, "Server PONG found and it is: %s with length %zd! Discarding.\n", tokens[1], strlen(tokens[1])); + return 1; + } } // We didn't process anything so return 0 |