diff options
author | June McEnroe <june@causal.agency> | 2019-10-26 01:23:04 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-10-26 01:23:04 -0400 |
commit | 809b401c37e2fb8a3087244bd9cae711769c0474 (patch) | |
tree | 7f40a74d4bba46564b02d132d182dc393a3f5e13 | |
parent | Allow reading sensitive information from files (diff) | |
download | pounce-809b401c37e2fb8a3087244bd9cae711769c0474.tar.gz pounce-809b401c37e2fb8a3087244bd9cae711769c0474.zip |
Disconnect client on unknown command
During registration, no other commands should be sent. Afterwards, only intercepted commands will get parsed.
Diffstat (limited to '')
-rw-r--r-- | client.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/client.c b/client.c index 28b9903..703a698 100644 --- a/client.c +++ b/client.c @@ -204,6 +204,7 @@ static void clientParse(struct Client *client, char *line) { Handlers[i].fn(client, &msg); break; } + client->error = true; } static bool intercept(const char *line, size_t len) { |