diff options
| author | Bill Rassieur <rassb@google.com> | 2019-04-02 18:29:07 +0000 |
|---|---|---|
| committer | Bill Rassieur <rassb@google.com> | 2019-04-02 18:29:07 +0000 |
| commit | 5b3dca4783f07c4db6e6db53892f1ca5d2d77b98 (patch) | |
| tree | 20ae6f8e1ea2f9aca0c9603dfab3c780680be152 | |
| parent | e6395f1bef4102ad0978f13ea93dcf586653337f (diff) | |
| parent | 91aa7ccdb2b92c09535d3e309e315635e6ba62a9 (diff) | |
| download | platform_external_android-clat-5b3dca4783f07c4db6e6db53892f1ca5d2d77b98.tar.gz platform_external_android-clat-5b3dca4783f07c4db6e6db53892f1ca5d2d77b98.tar.bz2 platform_external_android-clat-5b3dca4783f07c4db6e6db53892f1ca5d2d77b98.zip | |
Merge master@5428150 into git_qt-dev-plus-aosp.
Change-Id: I6a8453fa3bf5d87116f15f1fb0237026f4687f78
BUG: 129345239
| -rw-r--r-- | clatd.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -430,6 +430,11 @@ void read_packet(int read_fd, int write_fd, int to_ipv6) { } uint16_t proto = ntohs(tun_header->proto); + if (proto == ETH_P_IPV6) { + // kernel IPv6 stack spams us with router/neighbour solication, + // multicast group joins, etc. which otherwise fills the log... + return; + } if (proto != ETH_P_IP) { logmsg(ANDROID_LOG_WARN, "%s: unknown packet type = 0x%x", __func__, proto); return; |
