patch-1.3.92 linux/include/net/tcp.h
Next file: linux/mm/filemap.c
Previous file: linux/include/linux/stallion.h
Back to the patch index
Back to the overall index
- Lines: 20
- Date:
Sat Apr 20 21:35:21 1996
- Orig file:
v1.3.91/linux/include/net/tcp.h
- Orig date:
Sat Apr 13 18:22:07 1996
diff -u --recursive --new-file v1.3.91/linux/include/net/tcp.h linux/include/net/tcp.h
@@ -21,10 +21,15 @@
#include <linux/tcp.h>
#include <net/checksum.h>
-#define MAX_SYN_SIZE 44 + MAX_HEADER + 15
-#define MAX_FIN_SIZE 40 + MAX_HEADER + 15
-#define MAX_ACK_SIZE 40 + MAX_HEADER + 15
-#define MAX_RESET_SIZE 40 + MAX_HEADER + 15
+/*
+ * 40 is maximal IP options size
+ * 4 is TCP option size (MSS)
+ */
+#define MAX_SYN_SIZE (sizeof(struct iphdr) + 40 + sizeof(struct tcphdr) + 4 + MAX_HEADER + 15)
+#define MAX_FIN_SIZE (sizeof(struct iphdr) + 40 + sizeof(struct tcphdr) + MAX_HEADER + 15)
+#define MAX_ACK_SIZE (sizeof(struct iphdr) + 40 + sizeof(struct tcphdr) + MAX_HEADER + 15)
+#define MAX_RESET_SIZE (sizeof(struct iphdr) + 40 + sizeof(struct tcphdr) + MAX_HEADER + 15)
+
#define MAX_WINDOW 32767 /* Never offer a window over 32767 without using
window scaling (not yet supported). Some poor
stacks do signed 16bit maths! */
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov
with Sam's (original) version of this