blob: 1788826f82b57f0ec2f6db337ea4c7662bea1902 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 include/types/buffers.h
3 Buffer management definitions, macros and inline functions.
4
5 Copyright (C) 2000-2006 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*/
21
22#ifndef _TYPES_BUFFERS_H
23#define _TYPES_BUFFERS_H
24
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020025#include <common/config.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020026#include <common/memory.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020027
Willy Tarreau014b4fe2006-10-15 22:57:13 +020028#include <sys/time.h>
29#include <sys/types.h>
Willy Tarreau54469402006-07-29 16:59:06 +020030
31/* The BF_* macros designate Buffer Flags, which may be ORed in the bit field
32 * member 'flags' in struct buffer.
33 */
34#define BF_SHUTR_PENDING 1
35#define BF_SHUTR_DONE 2
36#define BF_SHUTW_PENDING 4
37#define BF_SHUTW_DONE 8
Willy Tarreau0f9f5052006-07-29 17:39:25 +020038
Willy Tarreau54469402006-07-29 16:59:06 +020039#define BF_PARTIAL_READ 16
40#define BF_COMPLETE_READ 32
41#define BF_READ_ERROR 64
Willy Tarreau0f9f5052006-07-29 17:39:25 +020042#define BF_READ_NULL 128
43#define BF_READ_STATUS (BF_PARTIAL_READ|BF_COMPLETE_READ|BF_READ_ERROR|BF_READ_NULL)
44#define BF_CLEAR_READ (~BF_READ_STATUS)
Willy Tarreau54469402006-07-29 16:59:06 +020045
Willy Tarreau0f9f5052006-07-29 17:39:25 +020046#define BF_PARTIAL_WRITE 256
47#define BF_COMPLETE_WRITE 512
48#define BF_WRITE_ERROR 1024
49#define BF_WRITE_NULL 2048
50#define BF_WRITE_STATUS (BF_PARTIAL_WRITE|BF_COMPLETE_WRITE|BF_WRITE_ERROR|BF_WRITE_NULL)
51#define BF_CLEAR_WRITE (~BF_WRITE_STATUS)
Willy Tarreau54469402006-07-29 16:59:06 +020052
53
Willy Tarreau0f9f5052006-07-29 17:39:25 +020054
Willy Tarreaubaaee002006-06-26 02:48:02 +020055/* describes a chunk of string */
56struct chunk {
57 char *str; /* beginning of the string itself. Might not be 0-terminated */
58 int len; /* size of the string from first to last char. <0 = uninit. */
59};
60
61struct buffer {
Willy Tarreauaad2e492006-10-15 23:32:18 +020062 unsigned int flags; /* BF_* */
Willy Tarreaud7971282006-07-29 18:36:34 +020063 struct timeval rex; /* expiration date for a read */
64 struct timeval wex; /* expiration date for a write */
65 struct timeval cex; /* expiration date for a connect */
66 int rto; /* read timeout */
67 int wto; /* write timeout */
68 int cto; /* connect timeout */
Willy Tarreaubaaee002006-06-26 02:48:02 +020069 unsigned int l; /* data length */
70 char *r, *w, *h, *lr; /* read ptr, write ptr, last header ptr, last read */
71 char *rlim; /* read limit, used for header rewriting */
72 unsigned long long total; /* total data read */
73 char data[BUFSIZE];
74};
75
76#define sizeof_buffer sizeof(struct buffer)
77extern void **pool_buffer;
78
79
80#endif /* _TYPES_BUFFERS_H */
81
82/*
83 * Local variables:
84 * c-indent-level: 8
85 * c-basic-offset: 8
86 * End:
87 */