diff options
author | Tom Gundersen <teg@jklm.no> | 2015-07-25 05:14:08 +0200 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2015-07-27 20:34:28 +0200 |
commit | c73ee39d1031f8d7e01448bf1a9810943d7c6560 (patch) | |
tree | 0192859ae00e576a6eac150d8be4aa9d7b4a4817 /src/resolve | |
parent | 088480faf1228e5f537fdef9c974874567529868 (diff) |
resolved: transaction - don't explicitly verify packet source
This is handled by the kernel now that the socket is connect()ed.
Diffstat (limited to 'src/resolve')
-rw-r--r-- | src/resolve/resolved-dns-transaction.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/resolve/resolved-dns-transaction.c b/src/resolve/resolved-dns-transaction.c index a8ff233673..b235fda3d2 100644 --- a/src/resolve/resolved-dns-transaction.c +++ b/src/resolve/resolved-dns-transaction.c @@ -350,24 +350,6 @@ void dns_transaction_process_reply(DnsTransaction *t, DnsPacket *p) { } } - if (t->scope->protocol == DNS_PROTOCOL_DNS) { - - /* For DNS we are fine with accepting packets on any - * interface, but the source IP address must be the - * one of the DNS server we queried */ - - assert(t->server); - - if (t->server->family != p->family) - return; - - if (!in_addr_equal(p->family, &p->sender, &t->server->address)) - return; - - if (p->sender_port != 53) - return; - } - if (t->received != p) { dns_packet_unref(t->received); t->received = dns_packet_ref(p); |