diff options
Diffstat (limited to 'misc/src/webserver/pages/about.c')
-rw-r--r-- | misc/src/webserver/pages/about.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/misc/src/webserver/pages/about.c b/misc/src/webserver/pages/about.c new file mode 100644 index 0000000..2b0002a --- /dev/null +++ b/misc/src/webserver/pages/about.c @@ -0,0 +1,6 @@ +void generate_about(int sock_in, char *query, char *ip) +{ +//printf("%s", html_header("About")); + web_send(sock_in, html_header("About")); + web_send(sock_in, "<center>eAthena Web Server!</center>\n"); +} |