1
0
mirror of https://github.com/lammertb/libhttp.git synced 2025-07-03 06:22:34 +03:00

Added new URI to handler mapping for C code.

This commit is contained in:
Thomas Davis
2013-09-01 00:43:10 -04:00
parent acbe6db15f
commit af000e03c7
6 changed files with 158 additions and 119 deletions

View File

@ -51,7 +51,7 @@ int main(int argc, char *argv[]) {
server.addHandler(EXIT_URI, new ExitHandler());
printf("Browse files at http://localhost:%s/\n", PORT);
printf("Run example at http://localhost:%s%s\n", PORT, EXIT_URI);
printf("Run example at http://localhost:%s%s\n", PORT, EXAMPLE_URI);
printf("Exit at http://localhost:%s%s\n", PORT, EXIT_URI);
while (!exitNow) {