Some(PgsqlStateProgress::ConnectionTerminated)
}
PgsqlFEMessage::UnknownMessageType(_) => {
- SCLogDebug!("Match: Unknown message type");
+ SCLogDebug!("Match: Unknown request message type");
// Not changing state when we don't know the message
None
}
// query was sent with what we received here?
Some(PgsqlStateProgress::CommandCompletedReceived)
}
+ PgsqlBEMessage::UnknownMessageType(_) => {
+ SCLogDebug!("Match: Unknown response message type");
+ // Not changing state when we don't know the message
+ None
+ }
PgsqlBEMessage::ErrorResponse(_) => Some(PgsqlStateProgress::ErrorMessageReceived),
_ => {
// We don't always have to change current state when we see a response...