]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - src/resolve/resolved-etc-hosts.h
test-resolved-etc-hosts: add tests for /etc/hosts parsing
[thirdparty/systemd.git] / src / resolve / resolved-etc-hosts.h
index 0498ee3821225831fa5e9a75c07b756730e8de86..caf32a53ddae230c869f3a2bc0e1cfbc5d530106 100644 (file)
@@ -5,5 +5,21 @@
 #include "resolved-dns-question.h"
 #include "resolved-dns-answer.h"
 
+typedef struct EtcHostsItem {
+        struct in_addr_data address;
+
+        char **names;
+} EtcHostsItem;
+
+typedef struct EtcHostsItemByName {
+        char *name;
+
+        struct in_addr_data **addresses;
+        size_t n_addresses, n_allocated;
+} EtcHostsItemByName;
+
+int etc_hosts_parse(EtcHosts *hosts, FILE *f);
+void etc_hosts_free(EtcHosts *hosts);
+
 void manager_etc_hosts_flush(Manager *m);
 int manager_etc_hosts_lookup(Manager *m, DnsQuestion* q, DnsAnswer **answer);