]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
resolved: ignore our own LLMNR packets, the same way we ignore mDNS packets already 7551/head
authorLennart Poettering <lennart@poettering.net>
Wed, 6 Dec 2017 11:45:39 +0000 (12:45 +0100)
committerLennart Poettering <lennart@poettering.net>
Wed, 6 Dec 2017 11:45:39 +0000 (12:45 +0100)
Let's minimize our traffic a bit. And for local names we bypass the
packet generation anyway.

src/resolve/resolved-llmnr.c

index 3e6e8b93b078c553317c6c7fbd5fbf5cc687e9d0..59499c9c0b8d8f1063c5e788443ab6a092fa8a38 100644 (file)
@@ -100,6 +100,9 @@ static int on_llmnr_packet(sd_event_source *s, int fd, uint32_t revents, void *u
         if (r <= 0)
                 return r;
 
+        if (manager_our_packet(m, p))
+                return 0;
+
         scope = manager_find_scope(m, p);
         if (!scope) {
                 log_debug("Got LLMNR UDP packet on unknown scope. Ignoring.");