diff options
author | Andreas Gampe <agampe@google.com> | 2014-11-24 18:43:39 -0800 |
---|---|---|
committer | Andreas Gampe <agampe@google.com> | 2014-11-24 18:43:39 -0800 |
commit | fee9afb1a5d9f7f5df0c79e29368c61d7da16fb8 (patch) | |
tree | 534576560a3b4da71cf490edc95b9ba72a43d834 | |
parent | 30588552f63424bd4bdbf5ebdce8ba63d10a7bb2 (diff) | |
download | android_external_android-clat-fee9afb1a5d9f7f5df0c79e29368c61d7da16fb8.tar.gz android_external_android-clat-fee9afb1a5d9f7f5df0c79e29368c61d7da16fb8.tar.bz2 android_external_android-clat-fee9afb1a5d9f7f5df0c79e29368c61d7da16fb8.zip |
Android-Clatd: Remove unused variable
For build-system CFLAGS clean-up, fix unused-but-set variables.
Change-Id: I3fc6b0d9bec87cd54d7b5199108cff576b4be677
-rw-r--r-- | clatd_test.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/clatd_test.cpp b/clatd_test.cpp index 9a09b48..b61da9f 100644 --- a/clatd_test.cpp +++ b/clatd_test.cpp @@ -431,7 +431,6 @@ void do_translate_packet(const uint8_t *original, size_t original_len, uint8_t * if (socketpair(AF_UNIX, SOCK_DGRAM | SOCK_NONBLOCK, 0, fds)) { abort(); } - struct tun_pi tun_header = { 0, 0 }; char foo[512]; snprintf(foo, sizeof(foo), "%s: Invalid original packet", msg); @@ -442,13 +441,11 @@ void do_translate_packet(const uint8_t *original, size_t original_len, uint8_t * int version = ip_version(original); switch (version) { case 4: - tun_header.proto = htons(ETH_P_IP); expected_proto = htons(ETH_P_IPV6); read_fd = fds[1]; write_fd = fds[0]; break; case 6: - tun_header.proto = htons(ETH_P_IPV6); expected_proto = htons(ETH_P_IP); read_fd = fds[0]; write_fd = fds[1]; |