Add re(4) as kernel module. After some feedback, this will be added to the
[dragonfly.git] / sys / netinet / tcp_seq.h
1 /*
2  * Copyright (c) 2003-2004 Jeffrey M. Hsu.  All rights reserved.
3  * Copyright (c) 1982, 1986, 1993, 1995
4  *      The Regents of the University of California.  All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  * 3. All advertising materials mentioning features or use of this software
15  *    must display the following acknowledgement:
16  *      This product includes software developed by the University of
17  *      California, Berkeley and its contributors.
18  * 4. Neither the name of the University nor the names of its contributors
19  *    may be used to endorse or promote products derived from this software
20  *    without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  *
34  *      @(#)tcp_seq.h   8.3 (Berkeley) 6/21/95
35  * $FreeBSD: src/sys/netinet/tcp_seq.h,v 1.11.2.7 2003/02/03 02:33:10 hsu Exp $
36  * $DragonFly: src/sys/netinet/tcp_seq.h,v 1.4 2004/07/02 04:41:01 hsu Exp $
37  */
38
39 #ifndef _NETINET_TCP_SEQ_H_
40 #define _NETINET_TCP_SEQ_H_
41 /*
42  * TCP sequence numbers are 32 bit integers operated
43  * on with modular arithmetic.  These macros can be
44  * used to compare such integers.
45  */
46 #define SEQ_LT(a,b)     ((int)((a)-(b)) < 0)
47 #define SEQ_LEQ(a,b)    ((int)((a)-(b)) <= 0)
48 #define SEQ_GT(a,b)     ((int)((a)-(b)) > 0)
49 #define SEQ_GEQ(a,b)    ((int)((a)-(b)) >= 0)
50
51 /* for modulo comparisons of timestamps */
52 #define TSTMP_LT(a,b)   ((int)((a)-(b)) < 0)
53 #define TSTMP_GEQ(a,b)  ((int)((a)-(b)) >= 0)
54
55 /*
56  * TCP connection counts are 32 bit integers operated
57  * on with modular arithmetic.  These macros can be
58  * used to compare such integers.
59  */
60 #define CC_LT(a,b)      ((int)((a)-(b)) < 0)
61 #define CC_LEQ(a,b)     ((int)((a)-(b)) <= 0)
62 #define CC_GT(a,b)      ((int)((a)-(b)) > 0)
63 #define CC_GEQ(a,b)     ((int)((a)-(b)) >= 0)
64
65 /* Macro to increment a CC: skip 0 which has a special meaning */
66 #define CC_INC(c)       (++(c) == 0 ? ++(c) : (c))
67
68 /*
69  * Macros to initialize tcp sequence numbers for
70  * send and receive from initial send and receive
71  * sequence numbers.
72  */
73 #define tcp_rcvseqinit(tp) \
74         (tp)->rcv_adv = (tp)->rcv_nxt = (tp)->irs + 1
75
76 #define tcp_sendseqinit(tp) \
77         (tp)->snd_una = (tp)->snd_nxt = (tp)->snd_max = (tp)->snd_up = \
78             (tp)->snd_recover = (tp)->iss
79
80 #define TCP_PAWS_IDLE   (24 * 24 * 60 * 60 * hz)
81                                         /* timestamp wrap-around time */
82
83 #ifdef _KERNEL
84 extern tcp_cc   tcp_ccgen;              /* global connection count */
85 #endif /* _KERNEL */
86 #endif /* _NETINET_TCP_SEQ_H_ */