summaryrefslogtreecommitdiff
path: root/src/libnm-systemd-shared/src/shared/dns-domain.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libnm-systemd-shared/src/shared/dns-domain.h')
-rw-r--r--src/libnm-systemd-shared/src/shared/dns-domain.h16
1 files changed, 1 insertions, 15 deletions
diff --git a/src/libnm-systemd-shared/src/shared/dns-domain.h b/src/libnm-systemd-shared/src/shared/dns-domain.h
index 77f596294d..c25fcaacc2 100644
--- a/src/libnm-systemd-shared/src/shared/dns-domain.h
+++ b/src/libnm-systemd-shared/src/shared/dns-domain.h
@@ -6,24 +6,10 @@
#include <stddef.h>
#include <stdint.h>
+#include "dns-def.h"
#include "hashmap.h"
#include "in-addr-util.h"
-/* Length of a single label, with all escaping removed, excluding any trailing dot or NUL byte */
-#define DNS_LABEL_MAX 63
-
-/* Worst case length of a single label, with all escaping applied and room for a trailing NUL byte. */
-#define DNS_LABEL_ESCAPED_MAX (DNS_LABEL_MAX*4+1)
-
-/* Maximum length of a full hostname, consisting of a series of unescaped labels, and no trailing dot or NUL byte */
-#define DNS_HOSTNAME_MAX 253
-
-/* Maximum length of a full hostname, on the wire, including the final NUL byte */
-#define DNS_WIRE_FORMAT_HOSTNAME_MAX 255
-
-/* Maximum number of labels per valid hostname */
-#define DNS_N_LABELS_MAX 127
-
typedef enum DNSLabelFlags {
DNS_LABEL_LDH = 1 << 0, /* Follow the "LDH" rule — only letters, digits, and internal hyphens. */
DNS_LABEL_NO_ESCAPES = 1 << 1, /* Do not treat backslashes specially */