aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Nehab <diego@impa.br>2012-12-10 15:50:44 -0200
committerDiego Nehab <diego@impa.br>2012-12-10 15:50:44 -0200
commit9d97d39575f5f5125868c23bd7225cef7d488f24 (patch)
tree1b155a74f425ed1622da6c78351fd8ae2ad5b803
parenta4b45edef23b83c357ffba52ee7c44d6ba303fc5 (diff)
downloadluasocket-9d97d39575f5f5125868c23bd7225cef7d488f24.tar.gz
luasocket-9d97d39575f5f5125868c23bd7225cef7d488f24.tar.bz2
luasocket-9d97d39575f5f5125868c23bd7225cef7d488f24.zip
Fix ltn12 version.
-rw-r--r--TODO6
-rw-r--r--src/ltn12.lua2
2 files changed, 7 insertions, 1 deletions
diff --git a/TODO b/TODO
index 886fd1e..a838fc0 100644
--- a/TODO
+++ b/TODO
@@ -1,5 +1,11 @@
1- bizarre default values for getnameinfo should throw error instead! 1- bizarre default values for getnameinfo should throw error instead!
2 2
3> It's just too bad it can't talk to gmail -
4> reason 1: they absolutely want TLS
5> reason 2: unlike all the other SMTP implementations, they
6> don't
7> tolerate missing < > around adresses
8
3- document the new bind and connect behavior. 9- document the new bind and connect behavior.
4- shouldn't we instead make the code compatible to Lua 5.2 10- shouldn't we instead make the code compatible to Lua 5.2
5 without any compat stuff, and use a compatibility layer to 11 without any compat stuff, and use a compatibility layer to
diff --git a/src/ltn12.lua b/src/ltn12.lua
index d999e93..fca1cb2 100644
--- a/src/ltn12.lua
+++ b/src/ltn12.lua
@@ -19,7 +19,7 @@ pump = {}
19 19
20-- 2048 seems to be better in windows... 20-- 2048 seems to be better in windows...
21BLOCKSIZE = 2048 21BLOCKSIZE = 2048
22_VERSION = "LTN12 1.0.1" 22_VERSION = "LTN12 1.0.2"
23 23
24----------------------------------------------------------------------------- 24-----------------------------------------------------------------------------
25-- Filter stuff 25-- Filter stuff