diff options
| author | Maciej enczykowski <maze@google.com> | 2019-03-30 05:30:24 -0700 |
|---|---|---|
| committer | android-build-merger <android-build-merger@google.com> | 2019-03-30 05:30:24 -0700 |
| commit | 5b9d637742a1a9001a8126ec98cc99495cbdf2fb (patch) | |
| tree | 20ae6f8e1ea2f9aca0c9603dfab3c780680be152 | |
| parent | e9d8305b8c502ec65e74b0592f7abc197be3e955 (diff) | |
| parent | 95da58bb1848ccdde2082b483f4fe62647d21ff1 (diff) | |
| download | platform_external_android-clat-5b9d637742a1a9001a8126ec98cc99495cbdf2fb.tar.gz platform_external_android-clat-5b9d637742a1a9001a8126ec98cc99495cbdf2fb.tar.bz2 platform_external_android-clat-5b9d637742a1a9001a8126ec98cc99495cbdf2fb.zip | |
clat - turn off spurious log messages caused by IPv6 packets am: 4e1601e533
am: 95da58bb18
Change-Id: I997f219909e35cb809a97e9550c8f354958c0122
| -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; |
