Go to the documentation of this file.
22 #define LDNS_BUILD_CONFIG_HAVE_SSL 1
23 #define LDNS_BUILD_CONFIG_HAVE_INTTYPES_H 1
24 #define LDNS_BUILD_CONFIG_HAVE_ATTR_FORMAT 1
25 #define LDNS_BUILD_CONFIG_HAVE_ATTR_UNUSED 1
26 #define LDNS_BUILD_CONFIG_HAVE_SOCKLEN_T 1
27 #define LDNS_BUILD_CONFIG_USE_DANE 1
28 #define LDNS_BUILD_CONFIG_HAVE_B32_PTON 0
29 #define LDNS_BUILD_CONFIG_HAVE_B32_NTOP 0
30 #define LDNS_BUILD_CONFIG_USE_DSA 1
31 #define LDNS_BUILD_CONFIG_USE_ED25519 1
32 #define LDNS_BUILD_CONFIG_USE_ED448 1
43 #ifndef __bool_true_false_are_defined
44 # ifdef HAVE_STDBOOL_H
51 # define _Bool signed char
57 # define __bool_true_false_are_defined 1
62 #if LDNS_BUILD_CONFIG_HAVE_ATTR_FORMAT
63 #define ATTR_FORMAT(archetype, string_index, first_to_check) \
64 __attribute__ ((format (archetype, string_index, first_to_check)))
66 #define ATTR_FORMAT(archetype, string_index, first_to_check)
69 #if defined(__cplusplus)
70 #define ATTR_UNUSED(x)
71 #elif LDNS_BUILD_CONFIG_HAVE_ATTR_UNUSED
72 #define ATTR_UNUSED(x) x __attribute__((unused))
74 #define ATTR_UNUSED(x) x
77 #if !LDNS_BUILD_CONFIG_HAVE_SOCKLEN_T
78 typedef int socklen_t;