Browse Source

Mark chunked transfer encoding (#95) as currently not working. See #98.

bel 10 years ago
parent
commit
a5c4b9dbb0
2 changed files with 3 additions and 2 deletions
  1. 2 2
      RELEASE_NOTES.md
  2. 1 0
      src/civetweb.c

+ 2 - 2
RELEASE_NOTES.md

@@ -1,12 +1,12 @@
 Release Notes v1.7 (Under Development)
 ===
-### Objectives: *Examples, documentation, additional API functions, chunked transfer support, rewritten handle_request method, bug fixes and updates*
+### Objectives: *Examples, documentation, additional API functions, rewritten handle_request method, bug fixes and updates*
 
 Changes
 -------
 
 - URI specific callbacks for websockets
-- Add chunked transfer support
+- Add chunked transfer support (TODO: currently not working)
 - Update LuaFileSystem
 - Update Lua to 5.2.4
 - Fix build for MinGW-x64, TDM-GCC and clang

+ 1 - 0
src/civetweb.c

@@ -2659,6 +2659,7 @@ int mg_read(struct mg_connection *conn, void *buf, size_t len)
 {
     if (conn->is_chunked)
     {
+        /* TODO: chunked transfer encoding (#95) is currently not working. See #98. */
         int i = 0;
         char buf[64];
         char *end = 0;