remove configuration option 'plat_from_dns64_hostname'

RFC 7050 has been a standard for so long, and is likely used
by so many other implementations, that it doesn't seem to make
sense to use anything else then 'ipv4only.arpa' (also that's
what netd uses, and this code here is really dead, since
in Q we moved the detection out of clatd and into netd).

Test: builds,
  'git grep free_config' comes up empty
  'git grep plat_from_dns64_hostname' comes up empty
Bug: 144730808
Signed-off-by: Maciej Żenczykowski <maze@google.com>
Change-Id: Ibf0c8d5e2cec6359fba1f7dd8867bd2742f362b4
diff --git a/config.h b/config.h
index e521b74..88c632a 100644
--- a/config.h
+++ b/config.h
@@ -23,7 +23,7 @@
 
 #define DEFAULT_IPV4_LOCAL_SUBNET "192.0.0.4"
 #define DEFAULT_IPV4_LOCAL_PREFIXLEN "29"
-#define DEFAULT_DNS64_DETECTION_HOSTNAME "ipv4only.arpa"
+#define DNS64_DETECTION_HOSTNAME "ipv4only.arpa"
 
 struct clat_config {
   int16_t mtu, ipv4mtu;
@@ -33,7 +33,6 @@
   int16_t ipv4_local_prefixlen;
   struct in6_addr plat_subnet;
   char *default_pdp_interface;
-  char *plat_from_dns64_hostname;
   int use_dynamic_iid;
 };