Commit 38421657 authored by Sergey Lyubka's avatar Sergey Lyubka

Minor refactoring in examples/upload.c

parent 69b0b58d
...@@ -17,8 +17,14 @@ typedef __int64 int64_t; ...@@ -17,8 +17,14 @@ typedef __int64 int64_t;
#include "mongoose.h" #include "mongoose.h"
// Make sure that form has enctype="multipart/form-data" attribute static void *callback(enum mg_event event, struct mg_connection *conn) {
static const char *html_form = if (event == MG_NEW_REQUEST) {
if (!strcmp(mg_get_request_info(conn)->uri, "/handle_post_request")) {
mg_printf(conn, "%s", "HTTP/1.0 200 OK\r\n\r\n");
mg_upload(conn, "/tmp");
} else {
// Show HTML form. Make sure it has enctype="multipart/form-data" attr.
static const char *html_form =
"<html><body>Upload example." "<html><body>Upload example."
"<form method=\"POST\" action=\"/handle_post_request\" " "<form method=\"POST\" action=\"/handle_post_request\" "
" enctype=\"multipart/form-data\">" " enctype=\"multipart/form-data\">"
...@@ -26,13 +32,6 @@ static const char *html_form = ...@@ -26,13 +32,6 @@ static const char *html_form =
"<input type=\"submit\" value=\"Upload\" />" "<input type=\"submit\" value=\"Upload\" />"
"</form></body></html>"; "</form></body></html>";
static void *callback(enum mg_event event, struct mg_connection *conn) {
if (event == MG_NEW_REQUEST) {
if (!strcmp(mg_get_request_info(conn)->uri, "/handle_post_request")) {
mg_printf(conn, "%s", "HTTP/1.0 200 OK\r\n\r\n");
mg_upload(conn, "/tmp");
} else {
// Show HTML form.
mg_printf(conn, "HTTP/1.0 200 OK\r\n" mg_printf(conn, "HTTP/1.0 200 OK\r\n"
"Content-Length: %d\r\n" "Content-Length: %d\r\n"
"Content-Type: text/html\r\n\r\n%s", "Content-Type: text/html\r\n\r\n%s",
......
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