Remove support for ESP in the web server.
[samba.git] / source4 / web_server / web_server.h
1 /* 
2    Unix SMB/CIFS implementation.
3    
4    Copyright (C) Andrew Tridgell              2005
5    
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10    
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "smbd/process_model.h"
21
22 struct web_server_data {
23         struct tls_params *tls_params;
24         void *private;  
25 };
26
27 struct http_header {
28         char *name;
29         char *value;
30         struct http_header *prev, *next;
31 };
32
33 /*
34   context of one open web connection
35 */
36 struct websrv_context {
37         struct task_server *task;
38         struct stream_connection *conn;
39         void (*http_process_input)(struct websrv_context *web);
40         struct {
41                 bool tls_detect;
42                 bool tls_first_char;
43                 uint8_t first_byte;
44                 DATA_BLOB partial;
45                 bool end_of_headers;
46                 char *url;
47                 unsigned content_length;
48                 bool post_request;
49                 struct http_header *headers;
50                 const char *content_type;
51         } input;
52         struct {
53                 bool output_pending;
54                 DATA_BLOB content;
55                 int fd;
56                 unsigned nsent;
57                 int response_code;
58                 struct http_header *headers;
59         } output;
60         struct session_data *session;
61 };
62
63
64 #include "web_server/proto.h"
65