summaryrefslogtreecommitdiff
path: root/src/resolve/dns_type-to-name.awk
diff options
context:
space:
mode:
Diffstat (limited to 'src/resolve/dns_type-to-name.awk')
-rw-r--r--src/resolve/dns_type-to-name.awk7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/resolve/dns_type-to-name.awk b/src/resolve/dns_type-to-name.awk
new file mode 100644
index 0000000000..64d675b0a9
--- /dev/null
+++ b/src/resolve/dns_type-to-name.awk
@@ -0,0 +1,7 @@
+BEGIN{ print "const char *dns_type_to_string(int type) {\n\tswitch(type) {" }
+{
+ printf " case DNS_TYPE_%s: return ", $1;
+ sub(/_/, "-");
+ printf "\"%s\";\n", $1
+}
+END{ print " default: return NULL;\n\t}\n}\n" }