diff options
author | Diego Nehab <diego@tecgraf.puc-rio.br> | 2004-12-07 20:39:02 +0000 |
---|---|---|
committer | Diego Nehab <diego@tecgraf.puc-rio.br> | 2004-12-07 20:39:02 +0000 |
commit | 33349fbd21838e95cd07b5f660624932222517e2 (patch) | |
tree | 31475eee399e30a328d707c36cd0b393e440d61b | |
parent | 4e5ad6d5ee9e72ddf6550a6795c18039b265e501 (diff) | |
download | luasocket-33349fbd21838e95cd07b5f660624932222517e2.tar.gz luasocket-33349fbd21838e95cd07b5f660624932222517e2.tar.bz2 luasocket-33349fbd21838e95cd07b5f660624932222517e2.zip |
More to do.
-rw-r--r-- | FIX | 1 | ||||
-rw-r--r-- | TODO | 3 | ||||
-rw-r--r-- | test/ltn12test.lua | 1 |
3 files changed, 4 insertions, 1 deletions
@@ -1,3 +1,4 @@ | |||
1 | mime filters are more strict with ltn12 standards | ||
1 | ltn12 avoids coroutines (so you can go wild on the C side) | 2 | ltn12 avoids coroutines (so you can go wild on the C side) |
2 | automated tests for ftp now in use | 3 | automated tests for ftp now in use |
3 | new compat-5.1 distribution | 4 | new compat-5.1 distribution |
@@ -1,3 +1,6 @@ | |||
1 | "foo.bar.baz" previously had to provide luaopen_foobarbaz() and now | ||
2 | should use luaopen_foo_bar_baz(). Change compat-5.1 and LuaSocket? | ||
3 | |||
1 | ftp.send/recv return bytes transfered? | 4 | ftp.send/recv return bytes transfered? |
2 | new scheme to choose family/protocol of object to create | 5 | new scheme to choose family/protocol of object to create |
3 | change ltn13 to make sure drawbacks are obvious | 6 | change ltn13 to make sure drawbacks are obvious |
diff --git a/test/ltn12test.lua b/test/ltn12test.lua index 7922bf1..74a45e8 100644 --- a/test/ltn12test.lua +++ b/test/ltn12test.lua | |||
@@ -272,4 +272,3 @@ assert(filter3(nil, 1), "filter3 not empty") | |||
272 | assert(filter4(nil, 1), "filter4 not empty") | 272 | assert(filter4(nil, 1), "filter4 not empty") |
273 | assert(filter5(nil, 1), "filter5 not empty") | 273 | assert(filter5(nil, 1), "filter5 not empty") |
274 | print("ok") | 274 | print("ok") |
275 | |||