summaryrefslogtreecommitdiff
path: root/src/user/app/netstack/tcp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/user/app/netstack/tcp.c')
-rw-r--r--src/user/app/netstack/tcp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/user/app/netstack/tcp.c b/src/user/app/netstack/tcp.c
index daa728f..490ad5b 100644
--- a/src/user/app/netstack/tcp.c
+++ b/src/user/app/netstack/tcp.c
@@ -175,8 +175,8 @@ void tcp_parse(const uint8_t *buf, size_t len, struct ipv4 ip) {
uint32_t seq = nget32(buf + Seq);
uint32_t acknum = nget32(buf + AckNum);
uint16_t flags = nget16(buf + Flags);
- uint16_t winsize = nget16(buf + WinSize);
- uint16_t chksum = nget16(buf + Checksum);
+ // uint16_t winsize = nget16(buf + WinSize);
+ // uint16_t chksum = nget16(buf + Checksum);
uint16_t hdrlen = ((flags & FlagSize) >> 12) * 4;
if (hdrlen > len) return;
uint16_t payloadlen = len - hdrlen;