From: Daniel Gruno Date: Sun, 15 Sep 2013 12:50:50 +0000 (+0000) Subject: mod_lua: Adjust documentation for r:wsread() X-Git-Tag: 2.5.0-alpha~5055 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b94df9a993a022bcd31ec291567186d19e562aa8;p=apache 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 bc19549e6b..f357ab9031 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)