]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/netinet/tcp_seq.h
xnu-1699.22.73.tar.gz
[apple/xnu.git] / bsd / netinet / tcp_seq.h
index 89a16ef798ddeead032daccc33355de64d9bbaef..df7bfa4e98bc5cc47edc0c26edba46955328b08b 100644 (file)
@@ -79,6 +79,8 @@
 
 /* for modulo comparisons of timestamps */
 #define TSTMP_LT(a,b)  ((int)((a)-(b)) < 0)
+#define TSTMP_GT(a,b)  ((int)((a)-(b)) > 0)
+#define TSTMP_LEQ(a,b) ((int)((a)-(b)) <= 0)
 #define TSTMP_GEQ(a,b) ((int)((a)-(b)) >= 0)
 
 /*