mirror of
git://git.code.sf.net/p/dhcpd-pools/code
synced 2025-12-16 15:57:00 +00:00
use more descriptive names in limit bits enum definition
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
This commit is contained in:
parent
4aff49ed80
commit
327691f34a
2 changed files with 39 additions and 39 deletions
|
|
@ -185,12 +185,12 @@ struct leases_t {
|
|||
UT_hash_handle hh;
|
||||
};
|
||||
/*! \enum limbits
|
||||
* \brief Output limit bits
|
||||
* \brief Output limit bits: R_BIT ranges, S_BIT shared networks, A_BIT all.
|
||||
*/
|
||||
enum limbits {
|
||||
BIT1 = 0x1,
|
||||
BIT2 = 0x2,
|
||||
BIT3 = 0x4
|
||||
R_BIT = 0x1,
|
||||
S_BIT = 0x2,
|
||||
A_BIT = 0x4
|
||||
};
|
||||
|
||||
/*! \def STATE_OK
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue