SERVER_DATA

Description

For TCP, this event is triggered when new data is received from the target node after TCP::collect command has been issued. For UDP, this event fires on receipt of each segment from the server. Unlike TCP, no collect is required, and there is no release command.

Examples

when SERVER_CONNECTED {
  TCP::collect
}
when SERVER_DATA {
  set payload [TCP::payload]
}