mirror of
https://github.com/zeek/zeek.git
synced 2025-10-11 11:08:20 +00:00
Handle Redis protocol message
separately
Closes #4504 Messages from pub/sub need separate handling in order to not mess up client request/reply correlation.
This commit is contained in:
parent
bbca02fe70
commit
5af510d5d7
7 changed files with 52 additions and 10 deletions
|
@ -101,3 +101,11 @@ global reply: event(c: connection, data: ReplyData);
|
|||
##
|
||||
## data: The server data sent to the client.
|
||||
global error: event(c: connection, data: ReplyData);
|
||||
|
||||
## Generated for every message the server sends that is not a reply to a
|
||||
## command.
|
||||
##
|
||||
## c: The connection.
|
||||
##
|
||||
## data: The server data sent to the client.
|
||||
global server_message: event(c: connection, data: ReplyData);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue