mongoose/examples/upload.c

55 lines
1.5 KiB
C
Raw Normal View History

2012-09-14 17:23:51 +08:00
// Copyright (c) 2004-2012 Sergey Lyubka
// This file is a part of mongoose project, http://github.com/valenok/mongoose
#include <stdio.h>
#include <string.h>
#include "mongoose.h"
2014-01-14 01:01:11 +08:00
static int index_html(struct mg_connection *conn) {
const char *data;
int data_len;
char var_name[100], file_name[100];
mg_printf_data(conn, "%s",
"<html><body>Upload example."
"<form method=\"POST\" action=\"/handle_post_request\" "
" enctype=\"multipart/form-data\">"
"<input type=\"file\" name=\"file\" /> <br/>"
"<input type=\"submit\" value=\"Upload\" />"
"</form>");
if (mg_parse_multipart(conn->content, conn->content_len,
var_name, sizeof(var_name),
file_name, sizeof(file_name),
&data, &data_len) > 0) {
mg_printf_data(conn, "%s", "Uploaded file:<pre>");
mg_send_data(conn, data, data_len);
mg_printf_data(conn, "%s", "/pre>");
2012-09-14 17:23:51 +08:00
}
2012-12-07 09:50:47 +08:00
2014-01-14 01:01:11 +08:00
mg_printf_data(conn, "%s", "</body></html>");
2013-02-02 00:48:30 +08:00
return 1;
}
2012-09-14 17:23:51 +08:00
int main(void) {
2014-01-14 01:01:11 +08:00
struct mg_server *server;
// Create and configure the server
server = mg_create_server(NULL);
mg_set_option(server, "listening_port", "8080");
mg_add_uri_handler(server, "/", index_html);
// Serve request. Hit Ctrl-C to terminate the program
printf("Starting on port %s\n", mg_get_option(server, "listening_port"));
for (;;) {
mg_poll_server(server, 1000);
}
// Cleanup, and free server instance
mg_destroy_server(&server);
2012-09-14 17:23:51 +08:00
return 0;
}