Skip to content
Snippets Groups Projects
Commit d766c998 authored by Andy Green's avatar Andy Green
Browse files

dummy handler: LWS_CALLBACK_HTTP_FILE_COMPLETION

parent ba45f7cf
No related branches found
No related tags found
No related merge requests found
...@@ -237,6 +237,12 @@ lws_callback_http_dummy(struct lws *wsi, enum lws_callback_reasons reason, ...@@ -237,6 +237,12 @@ lws_callback_http_dummy(struct lws *wsi, enum lws_callback_reasons reason,
#endif #endif
return -1; return -1;
break; break;
#if !defined(LWS_NO_SERVER)
case LWS_CALLBACK_HTTP_FILE_COMPLETION:
if (lws_http_transaction_completed(wsi))
return -1;
break;
#endif
case LWS_CALLBACK_HTTP_WRITEABLE: case LWS_CALLBACK_HTTP_WRITEABLE:
#ifdef LWS_WITH_CGI #ifdef LWS_WITH_CGI
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment