librpc: Fix error path cleanups in start_rpc_host_send()
[Samba.git] / libcli / http / http_internal.h
blobec17f7e2850ef83a974299e69d4193e8340a70a9
1 /*
2 Unix SMB/CIFS implementation.
4 HTTP library
6 Copyright (C) 2014 Samuel Cabrero <samuelcabrero@kernevil.me>
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #ifndef _HTTP_INTERNAL_H_
23 #define _HTTP_INTERNAL_H_
25 enum http_parser_state {
26 HTTP_READING_FIRSTLINE,
27 HTTP_READING_HEADERS,
28 HTTP_READING_BODY,
29 HTTP_READING_TRAILER,
30 HTTP_READING_DONE,
33 enum http_read_status {
34 HTTP_ALL_DATA_READ,
35 HTTP_MORE_DATA_EXPECTED,
36 HTTP_DATA_CORRUPTED,
37 HTTP_REQUEST_CANCELED,
38 HTTP_DATA_TOO_LONG,
41 struct http_conn {
42 struct tevent_queue *send_queue;
43 struct {
44 struct tstream_context *raw;
45 struct tstream_context *tls;
46 struct tstream_context *active;
47 } tstreams;
50 #endif /* _HTTP_INTERNAL_H_ */