bind9/lib
Ondřej Surý 8a38c17cca
Enforce type checking for dns_dbversiont_t
Originally, the dns_dbversion_t was typedef'ed to void type.  This
allowed some flexibility, but using (void *) just removes any
type-checking that C might have.  Instead of using:

    typedef void dns_dbversion_t;

use a trick to define the type to non-existing structure:

    typedef struct dns_dbversion dns_dbversion_t;

This allows the C compilers to employ the type-checking while the
structure itself doesn't have to be ever defined because the actual
'storage' is never accessed using dns_dbversion_t type.
2024-11-07 08:03:55 +01:00
..
dns Enforce type checking for dns_dbversiont_t 2024-11-07 08:03:55 +01:00
isc Add send-report-channel option 2024-10-23 21:29:32 +00:00
isccc Add OpenSSL includes as needed 2024-11-04 23:35:52 +00:00
isccfg Merge parse_querysource and parse_sockaddrsub 2024-11-05 09:37:08 +01:00
ns suppress report-channel for zones above the agent-domain 2024-10-23 21:29:32 +00:00
.gitignore The isc/platform.h header has been completely removed 2021-07-06 05:33:48 +00:00
Makefile.am Move irs_resconf into libdns and remove libirs 2023-02-24 09:38:59 +00:00