Skip to content
Snippets Groups Projects
Commit c432b783 authored by Sergey Lyubka's avatar Sergey Lyubka
Browse files

Formatted example

parent e0697683
No related branches found
No related tags found
No related merge requests found
...@@ -15,9 +15,9 @@ Here's a minimal application `app.c` that embeds mongoose: ...@@ -15,9 +15,9 @@ Here's a minimal application `app.c` that embeds mongoose:
#include "mongoose.h" #include "mongoose.h"
int main(void) { int main(void) {
struct mg_server *server = mg_create_server(NULL); struct mg_server *server = mg_create_server(NULL);
mg_set_option(server, "document_root", "."); // Serve current directory mg_set_option(server, "document_root", "."); // Serve current directory
mg_set_option(server, "listening_port", "8080"); // Open port 8080 mg_set_option(server, "listening_port", "8080"); // Open port 8080
for (;;) mg_poll_server(server, 1000); // Infinite loop, Ctrl-C to stop for (;;) mg_poll_server(server, 1000); // Infinite loop, Ctrl-C to stop
mg_destroy_server(&server); mg_destroy_server(&server);
return 0; return 0;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment