From 17802735d7e2e5db27e31c360067125beb023b12 Mon Sep 17 00:00:00 2001
From: Sergey Lyubka <sergey.lyubka@cesanta.com>
Date: Sun, 13 Dec 2015 19:56:33 +0000
Subject: [PATCH] Spiffy config for cc3200

    PUBLISHED_FROM=34b3678cb2510adfd5f26183ae7c16aadb97e6c9
---
 mongoose.c | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/mongoose.c b/mongoose.c
index ed0439916..65079522d 100644
--- a/mongoose.c
+++ b/mongoose.c
@@ -4620,8 +4620,6 @@ void mg_send_websocket_handshake(struct mg_connection *nc, const char *uri,
 
 #endif /* MG_DISABLE_HTTP_WEBSOCKET */
 
-#ifndef MG_DISABLE_FILESYSTEM
-
 void mg_send_response_line(struct mg_connection *nc, int status_code,
                            const char *extra_headers) {
   const char *status_message = "OK";
@@ -4659,12 +4657,17 @@ void mg_send_head(struct mg_connection *c, int status_code,
   mg_send(c, "\r\n", 2);
 }
 
+#ifdef MG_DISABLE_FILESYSTEM
+void mg_serve_http(struct mg_connection *nc, struct http_message *hm,
+                   struct mg_serve_http_opts opts) {
+  mg_send_head(nc, 501, 0, NULL);
+}
+#else
 static void send_http_error(struct mg_connection *nc, int code,
                             const char *reason) {
   (void) reason;
   mg_send_head(nc, code, 0, NULL);
 }
-
 #ifndef MG_DISABLE_SSI
 static void send_ssi_file(struct mg_connection *, const char *, FILE *, int,
                           const struct mg_serve_http_opts *);
-- 
GitLab