Throw an alert via bus_t when remote authentication fails.

This commit is contained in:
Tobias Brunner
2011-08-12 09:59:27 +02:00
parent d0a9173ec9
commit ff4b25f9b7
2 changed files with 18 additions and 11 deletions
+4 -2
View File
@@ -80,10 +80,12 @@ typedef struct bus_t bus_t;
* Kind of alerts to raise.
*/
enum alert_t {
/* a RADIUS server did not respond, no additional arguments */
/** a RADIUS server did not respond, no additional arguments */
ALERT_RADIUS_NOT_RESPONDING,
/* a shutdown signal has been received, argument is a int with the signal */
/** a shutdown signal has been received, argument is the signal (int) */
ALERT_SHUTDOWN_SIGNAL,
/** responder authentication failed, no arguments */
ALERT_RESPONDER_AUTH_FAILED,
};
/**