mirror of
https://gitlab.isc.org/isc-projects/dhcp
synced 2025-08-29 13:28:14 +00:00
Use compact leases by default.
This commit is contained in:
parent
875d2b66d8
commit
f0efccee58
@ -50,7 +50,7 @@
|
|||||||
/* Define this if you want exhaustive (and very slow) checking of the
|
/* Define this if you want exhaustive (and very slow) checking of the
|
||||||
malloc pool for corruption. */
|
malloc pool for corruption. */
|
||||||
|
|
||||||
/* #define DEBUG_MALLOC_POOL */
|
#define DEBUG_MALLOC_POOL
|
||||||
|
|
||||||
/* Define this if you want to maintain a history of the last N operations
|
/* Define this if you want to maintain a history of the last N operations
|
||||||
that changed reference counts on objects. This can be used to debug
|
that changed reference counts on objects. This can be used to debug
|
||||||
@ -70,17 +70,17 @@
|
|||||||
allocation error is detected (i.e., something that would cause a
|
allocation error is detected (i.e., something that would cause a
|
||||||
memory leak rather than a memory smash). */
|
memory leak rather than a memory smash). */
|
||||||
|
|
||||||
/* #define POINTER_DEBUG */
|
#define POINTER_DEBUG
|
||||||
|
|
||||||
/* Define this if you want debugging output for DHCP failover protocol
|
/* Define this if you want debugging output for DHCP failover protocol
|
||||||
messages. */
|
messages. */
|
||||||
|
|
||||||
/* #define DEBUG_FAILOVER_MESSAGES */
|
#define DEBUG_FAILOVER_MESSAGES
|
||||||
|
|
||||||
/* Define this if you want debugging output for DHCP failover protocol
|
/* Define this if you want debugging output for DHCP failover protocol
|
||||||
lease assignment timing. */
|
lease assignment timing. */
|
||||||
|
|
||||||
/* #define DEBUG_FAILOVER_TIMING */
|
#define DEBUG_FAILOVER_TIMING
|
||||||
|
|
||||||
/* Define this if you want DHCP failover protocol support in the DHCP
|
/* Define this if you want DHCP failover protocol support in the DHCP
|
||||||
server. */
|
server. */
|
||||||
@ -157,3 +157,9 @@
|
|||||||
/* Define this to change the logging facility used by dhcpd. */
|
/* Define this to change the logging facility used by dhcpd. */
|
||||||
|
|
||||||
/* #define DHCPD_LOG_FACILITY LOG_DAEMON */
|
/* #define DHCPD_LOG_FACILITY LOG_DAEMON */
|
||||||
|
|
||||||
|
/* Define this if you aren't debugging and you want to save memory
|
||||||
|
(potentially a _lot_ of memory) by allocating leases in chunks rather
|
||||||
|
than one at a time. */
|
||||||
|
|
||||||
|
#define COMPACT_LEASES
|
||||||
|
Loading…
x
Reference in New Issue
Block a user