Commit 49232847 authored by Sergey Lyubka's avatar Sergey Lyubka

Only hello example left, adopted to the new API

parent 673a2c58
...@@ -16,25 +16,14 @@ else ...@@ -16,25 +16,14 @@ else
endif endif
endif endif
all: hello upload post websocket chat all:
$(CC) hello.c ../mongoose.c -o hello $(CFLAGS)
hello:
$(CC) hello.c ../mongoose.c -o $@ $(CFLAGS) # $(CC) upload.c ../mongoose.c -o upload $(CFLAGS)
# $(CC) post.c ../mongoose.c -o post $(CFLAGS)
upload: # $(CC) -DUSE_WEBSOCKET websocket.c ../mongoose.c -o $@ $(CFLAGS)
$(CC) upload.c ../mongoose.c -o $@ $(CFLAGS) # $(CC) chat.c ../mongoose.c -o chat $(CFLAGS)
# $(CC) lua_dll.c ../build/lua_5.2.1.c -o $@.so $(CFLAGS) $(DLL_FLAGS)
post:
$(CC) post.c ../mongoose.c -o $@ $(CFLAGS)
websocket:
$(CC) -DUSE_WEBSOCKET websocket.c ../mongoose.c -o $@ $(CFLAGS)
chat:
$(CC) chat.c ../mongoose.c -o $@ $(CFLAGS)
lua_dll:
$(CC) lua_dll.c ../build/lua_5.2.1.c -o $@.so $(CFLAGS) $(DLL_FLAGS)
MSVC = ../../vc6 MSVC = ../../vc6
......
...@@ -2,50 +2,29 @@ ...@@ -2,50 +2,29 @@
#include <string.h> #include <string.h>
#include "mongoose.h" #include "mongoose.h"
// This function will be called by mongoose on every new request. // This function will be called by mongoose on every new request
static int event_handler(struct mg_event *event) { static int index_html(struct mg_connection *conn) {
static const char *reply = "HTTP/1.0 200 OK\r\n\r\nHello!";
if (event->type == MG_REQUEST_BEGIN) { mg_write(conn, reply, strlen(reply));
char content[100];
// Prepare the message we're going to send
int content_length = snprintf(content, sizeof(content),
"Hello from mongoose! Requested: [%s] [%s]",
event->request_info->request_method, event->request_info->uri);
// Send HTTP reply to the client
mg_printf(event->conn,
"HTTP/1.1 200 OK\r\n"
"Content-Type: text/plain\r\n"
"Content-Length: %d\r\n" // Always set Content-Length
"\r\n"
"%s",
content_length, content);
// Returning non-zero tells mongoose that our function has replied to
// the client, and mongoose should not send client any more data.
return 1;
}
// We do not handle any other event
return 0; return 0;
} }
int main(void) { int main(void) {
struct mg_context *ctx; struct mg_server *server;
// List of options. Last element must be NULL. // Create and configure the server
const char *options[] = {"listening_ports", "8080", NULL}; server = mg_create_server(NULL);
mg_set_option(server, "listening_port", "8080");
mg_add_uri_handler(server, "/", index_html);
// Start the web server. // Serve request. Hit Ctrl-C to terminate the program
ctx = mg_start(options, &event_handler, NULL); printf("Starting on port %s\n", mg_get_option(server, "listening_port"));
for (;;) {
// Wait until user hits "enter". Server is running in separate thread. mg_poll_server(server, 1000);
// Navigating to http://localhost:8080 will invoke begin_request_handler(). }
getchar();
// Stop the server. // Cleanup, and free server instance
mg_stop(ctx); mg_destroy_server(&server);
return 0; return 0;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment