patch-1.3.4 linux/include/net/tcp.h
Next file: linux/init/main.c
Previous file: linux/include/net/sock.h
Back to the patch index
Back to the overall index
- Lines: 25
- Date:
Mon Jun 26 09:24:30 1995
- Orig file:
v1.3.3/linux/include/net/tcp.h
- Orig date:
Tue Jun 6 11:22:18 1995
diff -u --recursive --new-file v1.3.3/linux/include/net/tcp.h linux/include/net/tcp.h
@@ -85,19 +85,19 @@
* and worry about wraparound (automatic with unsigned arithmetic).
*/
-extern __inline int before(unsigned long seq1, unsigned long seq2)
+extern __inline int before(__u32 seq1, __u32 seq2)
{
- return (long)(seq1-seq2) < 0;
+ return (__s32)(seq1-seq2) < 0;
}
-extern __inline int after(unsigned long seq1, unsigned long seq2)
+extern __inline int after(__u32 seq1, __u32 seq2)
{
- return (long)(seq1-seq2) > 0;
+ return (__s32)(seq1-seq2) > 0;
}
/* is s2<=s1<=s3 ? */
-extern __inline int between(unsigned long seq1, unsigned long seq2, unsigned long seq3)
+extern __inline int between(__u32 seq1, __u32 seq2, __u32 seq3)
{
return (after(seq1+1, seq2) && before(seq1, seq3+1));
}
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