From: Daniel Gruno Date: Sun, 15 Sep 2013 12:50:50 +0000 (+0000) Subject: mod_lua: Adjust documentation for r:wsread() X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7dcedb75058f4b5769eb141de8385676b56e789d;p=thirdparty%2Fapache%2Fhttpd.git mod_lua: Adjust documentation for r:wsread() git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1523433 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_lua.xml b/docs/manual/mod/mod_lua.xml index bc19549e6b4..f357ab90319 100644 --- a/docs/manual/mod/mod_lua.xml +++ b/docs/manual/mod/mod_lua.xml @@ -986,7 +986,7 @@ end r:wsread() -- Reads a WebSocket frame from a WebSocket upgraded connection (see above): - -- Currently, only the WS protocol is supported (no WSS support for reading) + local line, isFinal = r:wsread() -- isFinal denotes whether this is the final frame. -- If it isn't, then more frames can be read r:wswrite("You wrote: " .. line)