libwebsockets
Lightweight C library for HTML5 websockets
lws-cgi.h
1/*
2 * libwebsockets - small server side websockets and web server implementation
3 *
4 * Copyright (C) 2010 - 2019 Andy Green <andy@warmcat.com>
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
22 * IN THE SOFTWARE.
23 */
24
34
35enum lws_enum_stdinouterr {
36 LWS_STDIN = 0,
37 LWS_STDOUT = 1,
38 LWS_STDERR = 2,
39};
40
41enum lws_cgi_hdr_state {
42 LCHS_HEADER,
43 LCHS_CR1,
44 LCHS_LF1,
45 LCHS_CR2,
46 LCHS_LF2,
47 LHCS_RESPONSE,
48 LHCS_DUMP_HEADERS,
49 LHCS_PAYLOAD,
50 LCHS_SINGLE_0A,
51};
52
54 struct lws **stdwsi;
55 enum lws_enum_stdinouterr ch;
56 unsigned char *data;
57 enum lws_cgi_hdr_state hdr_state;
58 int len;
59};
60
61#ifdef LWS_WITH_CGI
72LWS_VISIBLE LWS_EXTERN int
73lws_cgi(struct lws *wsi, const char * const *exec_array,
74 int script_uri_path_len, int timeout_secs,
75 const struct lws_protocol_vhost_options *mp_cgienv);
76
82LWS_VISIBLE LWS_EXTERN int
83lws_cgi_write_split_stdout_headers(struct lws *wsi);
84
90LWS_VISIBLE LWS_EXTERN int
91lws_cgi_kill(struct lws *wsi);
92
99LWS_VISIBLE LWS_EXTERN struct lws *
100lws_cgi_get_stdwsi(struct lws *wsi, enum lws_enum_stdinouterr ch);
101
102#endif
104
Definition lws-cgi.h:53
int len
Definition lws-cgi.h:58
struct lws ** stdwsi
Definition lws-cgi.h:54
enum lws_cgi_hdr_state hdr_state
Definition lws-cgi.h:57
unsigned char * data
Definition lws-cgi.h:56
enum lws_enum_stdinouterr ch
Definition lws-cgi.h:55
Definition lws-context-vhost.h:1256