]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/netinet/tcp_seq.h
xnu-1699.32.7.tar.gz
[apple/xnu.git] / bsd / netinet / tcp_seq.h
index ac032da621f948eb6feb09fd3b0aacec7d596025..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)
 
 /*
                                        /* timestamp wrap-around time */
 
 extern tcp_cc  tcp_ccgen;              /* global connection count */
-#endif KERNEL_PRIVATE
+#endif /* KERNEL_PRIVATE */
 #endif /* _NETINET_TCP_SEQ_H_ */