In much of the protocol handler code, we simply check for our desired message type. And if it's not correct, send out an error message. But we shouldn't reply to error messages with more error messages. For one, it's redundant. And two, it could possibly lead to an infinite loop.
In much of the protocol handler code, we simply check for our desired message type. And if it's not correct, send out an error message. But we shouldn't reply to error messages with more error messages. For one, it's redundant. And two, it could possibly lead to an infinite loop.