mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-09-22 22:31:28 +02:00
Some structures have optional fields which depend on availability of certain features on certain platforms, and having to stuff lots of ifdefs in these structs makes them unreadable. Using real values like ints requires some initialization and adds even more confusion. Here we take a different approach : we create an empty type called empty_t to use as a substitute for the real type that is not implemented and which doesn't contain any value (it's an empty struct). Thus it has a size of zero but an address, thus a pointer may point to it. It will not have to be initialized though. Some initialization code might even continue to work and do nothing like initializing it using memset with its sizeof which is zero.