The FreeRADIUS server $Id: 15bac2a4c627c01d1aa2047687b3418955ac7f00 $
|
Signals that can be sent to a request. More...
Go to the source code of this file.
Macros | |
#define | fr_signal_is_cancel(_signal) (_signal & FR_SIGNAL_CANCEL) |
#define | fr_signal_is_detach(_signal) (_signal & FR_SIGNAL_DETACH) |
#define | fr_signal_is_dup(_signal) (_signal & FR_SIGNAL_DUP) |
#define | fr_signal_is_retry(_signal) (_signal & FR_SIGNAL_RETRY) |
#define | fr_signal_is_timeout(_signal) (_signal & FR_SIGNAL_TIMEOUT) |
Enumerations | |
enum | fr_signal_t { FR_SIGNAL_INVALID = 0x00 , FR_SIGNAL_CANCEL = 0x01 , FR_SIGNAL_DUP = 0x02 , FR_SIGNAL_DETACH = 0x04 , FR_SIGNAL_RETRY = 0x08 , FR_SIGNAL_TIMEOUT = 0x10 } |
Signals that can be generated/processed by request signal handlers. More... | |
Signals that can be sent to a request.
Definition in file signal.h.
#define fr_signal_is_cancel | ( | _signal | ) | (_signal & FR_SIGNAL_CANCEL) |
#define fr_signal_is_detach | ( | _signal | ) | (_signal & FR_SIGNAL_DETACH) |
#define fr_signal_is_dup | ( | _signal | ) | (_signal & FR_SIGNAL_DUP) |
#define fr_signal_is_retry | ( | _signal | ) | (_signal & FR_SIGNAL_RETRY) |
#define fr_signal_is_timeout | ( | _signal | ) | (_signal & FR_SIGNAL_TIMEOUT) |
enum fr_signal_t |
Signals that can be generated/processed by request signal handlers.
This is a bitfield so that it can be used to specify signal masks.