Add alerts for sent/received message retransmissions and timeout

This commit is contained in:
Martin Willi
2012-11-29 10:22:51 +01:00
parent 93ceaa7e64
commit 3c79b7b7db
3 changed files with 14 additions and 0 deletions
+6
View File
@@ -99,6 +99,12 @@ enum alert_t {
/** received IKE message with invalid body, argument is message_t*,
* followed by a status_t result returned by message_t.parse_body(). */
ALERT_PARSE_ERROR_BODY,
/** sending a retransmit for a message, argument is packet_t */
ALERT_RETRANSMIT_SEND,
/** sending retransmits timed out, argument is packet_t */
ALERT_RETRANSMIT_SEND_TIMEOUT,
/** received a retransmit for a message, argument is message_t */
ALERT_RETRANSMIT_RECEIVE,
};
/**