examples/LDAP: delete unmaintained samba-schema-netscapeds4.x
[Samba/wip.git] / source4 / web_server / web_server.h
blobaa4d83c17b5c972f6dc347f7be47e7a72bcf2724
1 /*
2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Tridgell 2005
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.
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.
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/>.
20 #ifndef __WEB_SERVER_H__
21 #define __WEB_SERVER_H__
23 #include "smbd/process_model.h"
25 struct websrv_context;
27 struct web_server_data {
28 struct tls_params *tls_params;
29 void (*http_process_input)(struct web_server_data *wdata,
30 struct websrv_context *web);
31 void *private_data;
34 struct http_header {
35 char *name;
36 char *value;
37 struct http_header *prev, *next;
41 context of one open web connection
43 struct websrv_context {
44 struct task_server *task;
45 struct stream_connection *conn;
46 struct websrv_request_input {
47 bool tls_detect;
48 bool tls_first_char;
49 uint8_t first_byte;
50 DATA_BLOB partial;
51 bool end_of_headers;
52 char *url;
53 unsigned content_length;
54 bool post_request;
55 struct http_header *headers;
56 } input;
57 struct websrv_request_output {
58 bool output_pending;
59 DATA_BLOB content;
60 bool headers_sent;
61 unsigned nsent;
62 } output;
63 struct session_data *session;
66 bool wsgi_initialize(struct web_server_data *wdata);
67 void http_error(struct websrv_context *web, const char *status, const char *info);
68 void websrv_output_headers(struct websrv_context *web, const char *status, struct http_header *headers);
69 void websrv_output(struct websrv_context *web, void *data, size_t length);
70 NTSTATUS http_parse_header(struct websrv_context *web, const char *line);
72 #endif /* __WEB_SERVER_H__ */