Changeset 32027
- Timestamp:
- 2012-06-02T16:56:24+02:00 (6 years ago)
- Location:
- trunk/package/uhttpd
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/package/uhttpd/Makefile
r32005 r32027 9 9 10 10 PKG_NAME:=uhttpd 11 PKG_RELEASE:=3 411 PKG_RELEASE:=35 12 12 13 13 PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME) -
trunk/package/uhttpd/src/uhttpd-cgi.c
r31931 r32027 182 182 len = uh_raw_send(state->wfd, buf, len, 183 183 cl->server->conf->script_timeout); 184 185 /* explicit EOF notification for the child */ 186 if (state->content_length <= 0) 187 close(state->wfd); 184 188 } 185 189 -
trunk/package/uhttpd/src/uhttpd-lua.c
r31931 r32027 299 299 state->content_length = 0; 300 300 301 /* ... write to CGIprocess */301 /* ... write to Lua process */ 302 302 len = uh_raw_send(state->wfd, buf, len, 303 303 cl->server->conf->script_timeout); 304 305 /* explicit EOF notification for the child */ 306 if (state->content_length <= 0) 307 close(state->wfd); 304 308 } 305 309
Note: See TracChangeset
for help on using the changeset viewer.