Skip to content

Commit d2cedd8

Browse files
committed
doc: updated the TODO list to reflect recent changes.
1 parent 20f2e88 commit d2cedd8

File tree

1 file changed

+4
-13
lines changed

1 file changed

+4
-13
lines changed

doc/HttpLuaModule.wiki

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -682,20 +682,10 @@ phases.
682682
= TODO =
683683
684684
* cosocket: implement LuaSocket's unconnected UDP API.
685-
* add support for implementing general TCP servers instead of HTTP servers in Lua. For example,
685+
* port this module to the "datagram" subsystem of NGINX for implementing general UDP servers instead of HTTP
686+
servers in Lua. For example,
686687
<geshi lang="lua">
687-
tcp {
688-
server {
689-
listen 11212;
690-
handler_by_lua '
691-
-- custom Lua code implementing the special TCP server...
692-
';
693-
}
694-
}
695-
</geshi>
696-
* add support for implementing general UDP servers instead of HTTP servers in Lua. For example,
697-
<geshi lang="lua">
698-
udp {
688+
datagram {
699689
server {
700690
listen 1953;
701691
handler_by_lua '
@@ -718,6 +708,7 @@ phases.
718708
* add <code>ignore_resp_headers</code>, <code>ignore_resp_body</code>, and <code>ignore_resp</code> options to [[#ngx.location.capture|ngx.location.capture]] and [[#ngx.location.capture_multi|ngx.location.capture_multi]] methods, to allow micro performance tuning on the user side.
719709
* add automatic Lua code time slicing support by yielding and resuming the Lua VM actively via Lua's debug hooks.
720710
* add <code>stat</code> mode similar to [https://httpd.apache.org/docs/trunk/mod/mod_lua.html mod_lua].
711+
* cosocket: add client SSL certificiate support.
721712
722713
= Changes =
723714

0 commit comments

Comments
 (0)