]> granicus.if.org Git - apache/commitdiff
mod_lua: Adjust documentation for r:wsread()
authorDaniel Gruno <humbedooh@apache.org>
Sun, 15 Sep 2013 12:50:50 +0000 (12:50 +0000)
committerDaniel Gruno <humbedooh@apache.org>
Sun, 15 Sep 2013 12:50:50 +0000 (12:50 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1523433 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_lua.xml

index bc19549e6b4531001a1f7c5a6c15ecc3d9ddfb6d..f357ab9031953c09217dd3e13e4bb1de4498f32f 100644 (file)
@@ -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)