blob: ac9d328b58d7e2f1f7792110559aed530520ae85 [file] [log] [blame]
Willy Tarreaub6866442008-07-14 23:54:42 +02001/*
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02002 * include/types/proto_tcp.h
3 * This file contains TCP protocol definitions.
4 *
5 * Copyright (C) 2000-2010 Willy Tarreau - w@1wt.eu
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation, version 2.1
10 * exclusively.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
Willy Tarreaub6866442008-07-14 23:54:42 +020021
22#ifndef _TYPES_PROTO_TCP_H
23#define _TYPES_PROTO_TCP_H
24
25#include <common/config.h>
26#include <common/mini-clist.h>
27
28#include <types/acl.h>
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +020029#include <types/session.h>
Willy Tarreaub6866442008-07-14 23:54:42 +020030
31/* Layer4 accept/reject rules */
32enum {
33 TCP_ACT_ACCEPT = 1,
34 TCP_ACT_REJECT = 2,
Willy Tarreaud5ca9ab2013-05-28 17:40:25 +020035 TCP_ACT_TRK_SC1 = 3, /* TCP request tracking : must be contiguous */
Willy Tarreau56123282010-08-06 19:06:56 +020036 TCP_ACT_TRK_SC2 = 4,
Willy Tarreaue25c9172013-05-28 18:32:20 +020037 TCP_ACT_TRK_SC3 = 5,
Willy Tarreaub6866442008-07-14 23:54:42 +020038};
39
40struct tcp_rule {
41 struct list list;
42 struct acl_cond *cond;
43 int action;
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +020044 union {
45 struct track_ctr_prm trk_ctr;
46 } act_prm;
Willy Tarreaub6866442008-07-14 23:54:42 +020047};
48
49#endif /* _TYPES_PROTO_TCP_H */
50
51/*
52 * Local variables:
53 * c-indent-level: 8
54 * c-basic-offset: 8
55 * End:
56 */