aboutsummaryrefslogtreecommitdiff
path: root/src/request.h
diff options
context:
space:
mode:
authorAleksey Veresov <aleksey@veresov.pro>2019-09-17 17:20:30 +0300
committerAleksey Veresov <aleksey@veresov.pro>2019-09-17 17:20:30 +0300
commita14bbfa1ff411a4dc1b2b1935fbab4cc7f0c18f1 (patch)
tree2ae2eca3beb4ad7ca6a9d1d310ef3a333343d8c0 /src/request.h
parent1427a57ac2c766f0321e5ccd5a6890ffe7323d17 (diff)
downloadmagi-a14bbfa1ff411a4dc1b2b1935fbab4cc7f0c18f1.tar
magi-a14bbfa1ff411a4dc1b2b1935fbab4cc7f0c18f1.tar.xz
magi-a14bbfa1ff411a4dc1b2b1935fbab4cc7f0c18f1.zip
Request environmental variables were improved.
Diffstat (limited to 'src/request.h')
-rw-r--r--src/request.h21
1 files changed, 20 insertions, 1 deletions
diff --git a/src/request.h b/src/request.h
index 4957099..56513da 100644
--- a/src/request.h
+++ b/src/request.h
@@ -6,6 +6,24 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Request
+ *
+ * Example for enivronmental variables:
+ * Request: http://example.com/cgi-bin/script/foo/bar?var2=url%20enc
+ * method: get
+ * uri: /cgi-bin/script/foo/bar?var2=url%20enc
+ * document_root: { absolute path to root directory of domain }
+ * document_uri: /cgi-bin/script/foo/bar
+ * script_name: /cgi-bin/script
+ * script_filename: { absolute path to script on server machine }
+ * remote_addr: { client IP }
+ * remote_port: { client port }
+ * server_addr: { server IP }
+ * server_name: example.com
+ * (^ Better to use http_params["HTTP_HOST"] -- server_name can be IP too.)
+ * server_port: 80
+ * server_protocol: http/1.1
+ * server_software: { name of web server software }
+ * path_info: /foo/bar
*/
struct magi_request {
struct magi_field_list *fields;
@@ -23,8 +41,9 @@ struct magi_request {
char *server_port;
char *server_protocol;
char *server_software;
+ char *path_info;
struct magi_param_list *http_params;
-}; /* http[s]://{server_name}[:{server_port}]{script_name}[?...] */
+};
/* Common Request Handling */