blob: 0005bf78cc694f1607b82bff0a4eb31e9dd0e5d5 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 include/proto/proto_http.h
3 This file contains HTTP protocol definitions.
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 _PROTO_PROTO_HTTP_H
23#define _PROTO_PROTO_HTTP_H
24
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020025#include <common/config.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020026#include <types/proto_http.h>
27#include <types/session.h>
28#include <types/task.h>
29
30
31int event_accept(int fd);
32int process_session(struct task *t);
33int process_cli(struct session *t);
34int process_srv(struct session *t);
35
36void client_retnclose(struct session *s, int len, const char *msg);
37void client_return(struct session *s, int len, const char *msg);
38void srv_close_with_err(struct session *t, int err, int finst,
Willy Tarreaub17916e2006-10-15 15:17:57 +020039 int status, int msglen, const char *msg);
Willy Tarreaubaaee002006-06-26 02:48:02 +020040
41int produce_content(struct session *s);
42
43#endif /* _PROTO_PROTO_HTTP_H */
44
45/*
46 * Local variables:
47 * c-indent-level: 8
48 * c-basic-offset: 8
49 * End:
50 */