diff options
author | Daniel Gruno <humbedooh@apache.org> | 2013-09-15 14:50:50 +0200 |
---|---|---|
committer | Daniel Gruno <humbedooh@apache.org> | 2013-09-15 14:50:50 +0200 |
commit | b94df9a993a022bcd31ec291567186d19e562aa8 (patch) | |
tree | e0639d3eacad72b3d50b39e68856b055b58b9bb4 /docs | |
parent | mod_lua: Figure out a way to read from SSL connections with WebSockets. Briga... (diff) | |
download | apache2-b94df9a993a022bcd31ec291567186d19e562aa8.tar.xz apache2-b94df9a993a022bcd31ec291567186d19e562aa8.zip |
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
Diffstat (limited to 'docs')
-rw-r--r-- | docs/manual/mod/mod_lua.xml | 2 |
1 files changed, 1 insertions, 1 deletions
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 <highlight language="lua"> 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) |