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 2 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, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #include "smbd/process_model.h"
25 context of one open web connection
27 struct websrv_context {
28 struct task_server *task;
29 struct stream_connection *conn;
37 unsigned content_length;
39 const char *content_type;
40 const char *query_string;
41 const char *user_agent;
44 const char *accept_encoding;
45 const char *accept_language;
46 const char *accept_charset;
48 const char *session_key;
58 struct tls_context *tls;
59 struct session_data *session;
64 context for long term storage in the web server, to support session[]
65 and application[] data. Stored in task->private.
69 struct session_data *next, *prev;
70 struct esp_data *edata;
73 struct timed_event *te;
76 struct MprVar *application_data;
77 struct tls_params *tls_params;