summaryrefslogtreecommitdiff
path: root/misc/src/webserver/doc/API.txt
diff options
context:
space:
mode:
authorDennis Friis <peavey@placid.dk>2008-11-03 07:00:17 +0000
committerDennis Friis <peavey@placid.dk>2008-11-03 07:00:17 +0000
commita7f3726a0a7f16bccb664871fe35e8d2f2572f00 (patch)
tree52d1d2d53186ea4a8bbeb0c879f7494a9771fde7 /misc/src/webserver/doc/API.txt
parentd569cd100a2f60ec99104a83c1e54306f94dd06f (diff)
downloadtmwa-a7f3726a0a7f16bccb664871fe35e8d2f2572f00.tar.gz
tmwa-a7f3726a0a7f16bccb664871fe35e8d2f2572f00.tar.bz2
tmwa-a7f3726a0a7f16bccb664871fe35e8d2f2572f00.tar.xz
tmwa-a7f3726a0a7f16bccb664871fe35e8d2f2572f00.zip
Do a bit of cleanup I never got around to do, before moving from my repo to sf.net
Diffstat (limited to 'misc/src/webserver/doc/API.txt')
-rw-r--r--misc/src/webserver/doc/API.txt50
1 files changed, 0 insertions, 50 deletions
diff --git a/misc/src/webserver/doc/API.txt b/misc/src/webserver/doc/API.txt
deleted file mode 100644
index c80f7bd..0000000
--- a/misc/src/webserver/doc/API.txt
+++ /dev/null
@@ -1,50 +0,0 @@
-Here's the webserver API, so you can work on the webserver.
-
-My personal goal is to make this interface simple, so that coding it
-will be like coding in some scripting language...
-
-
-
-char *get_param(char in_string[500], char swhat[500]);
-
-This function simply returns various data from the query string.
- *Pass get_param NOTHING longer than 500 in length!
-
- What do I pass where in_string is?
- The query string.
-
- What do I pass where swhat is?
- One of two things...
- Either 0 for the path of the 'page'
- or you can pass it the param you wish to lookup.
-
-
-
-
-
-
-char *get_query(char *inquery);
-
-This function simply returns a query string from the raw server request.
-This is used once in main, I doubt you'll need it.
-
-
-
-
-
-void web_send(int sockin, char *in_data);
-
-Super easy way of sending data to a webpage!
-Simply put in the socket name and then the data.
-
- Ex:
- web_send(socket, "I like cheese!\n");
-
-
-
-
-char *html_header(char* title);
-Easy way to print the eAthena header for the server.
-
- Ex:
- web_send(sockethere, html_header("About"));