diff options
author | Diego Nehab <diego@tecgraf.puc-rio.br> | 2007-10-13 23:55:20 +0000 |
---|---|---|
committer | Diego Nehab <diego@tecgraf.puc-rio.br> | 2007-10-13 23:55:20 +0000 |
commit | d1a72435d5bd3528f3c334cd4d1da16dcead47bf (patch) | |
tree | ca6f092afee764923d747b0f0b6fd1ad2418cfae /doc | |
parent | 52ac60af8132ae7e42151d3012a9607d7cadaf95 (diff) | |
download | luasocket-d1a72435d5bd3528f3c334cd4d1da16dcead47bf.tar.gz luasocket-d1a72435d5bd3528f3c334cd4d1da16dcead47bf.tar.bz2 luasocket-d1a72435d5bd3528f3c334cd4d1da16dcead47bf.zip |
New release.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/index.html | 7 | ||||
-rw-r--r-- | doc/tcp.html | 3 |
2 files changed, 7 insertions, 3 deletions
diff --git a/doc/index.html b/doc/index.html index 1605af1..57a7907 100644 --- a/doc/index.html +++ b/doc/index.html | |||
@@ -124,7 +124,7 @@ Special thanks go to | |||
124 | David Burgess, who has helped push the library to a new level of quality and | 124 | David Burgess, who has helped push the library to a new level of quality and |
125 | from whom I have learned a lot of stuff that doesn't show up in RFCs. | 125 | from whom I have learned a lot of stuff that doesn't show up in RFCs. |
126 | Special thanks also to Carlos Cassino, who played a big part in the | 126 | Special thanks also to Carlos Cassino, who played a big part in the |
127 | extensible design seen in the C core of LuaSocket 2.0. Recently, Mike Pall | 127 | extensible design seen in the C core of LuaSocket 2.0. Mike Pall |
128 | has been helping a lot too! Thanks to you all! | 128 | has been helping a lot too! Thanks to you all! |
129 | </p> | 129 | </p> |
130 | 130 | ||
@@ -137,6 +137,9 @@ has been helping a lot too! Thanks to you all! | |||
137 | </p> | 137 | </p> |
138 | 138 | ||
139 | <ul> | 139 | <ul> |
140 | <li> Improved: http.request() now supports deprecated | ||
141 | HTTP/0.9 servers (Florian Berger); | ||
142 | <li> Fixed: could return "timedout" instead of "timeout" (Leo Leo); | ||
140 | <li> Fixed: crash when reading '*a' on closed socket (Paul Ducklin); | 143 | <li> Fixed: crash when reading '*a' on closed socket (Paul Ducklin); |
141 | <li> Fixed: return values are consistent when reading from closed sockets; | 144 | <li> Fixed: return values are consistent when reading from closed sockets; |
142 | <li> Fixed: case sensitivity in headers of multipart | 145 | <li> Fixed: case sensitivity in headers of multipart |
@@ -195,7 +198,7 @@ still available for those that have compatibility issues. | |||
195 | <p> | 198 | <p> |
196 | <small> | 199 | <small> |
197 | Last modified by Diego Nehab on <br> | 200 | Last modified by Diego Nehab on <br> |
198 | Thu Apr 20 00:25:23 EDT 2006 | 201 | Wed Oct 3 02:07:59 BRT 2007 |
199 | </small> | 202 | </small> |
200 | </p> | 203 | </p> |
201 | </center> | 204 | </center> |
diff --git a/doc/tcp.html b/doc/tcp.html index 602c73c..a16a09e 100644 --- a/doc/tcp.html +++ b/doc/tcp.html | |||
@@ -284,7 +284,8 @@ closed. No end-of-line translation is performed; | |||
284 | <li> '<tt>*l</tt>': reads a line of text from the socket. The line is | 284 | <li> '<tt>*l</tt>': reads a line of text from the socket. The line is |
285 | terminated by a LF character (ASCII 10), optionally preceded by a | 285 | terminated by a LF character (ASCII 10), optionally preceded by a |
286 | CR character (ASCII 13). The CR and LF characters are not included in | 286 | CR character (ASCII 13). The CR and LF characters are not included in |
287 | the returned line. This is the default pattern; | 287 | the returned line. In fact, <em>all</em> CR characters are |
288 | ignored by the pattern. This is the default pattern; | ||
288 | <li> <tt>number</tt>: causes the method to read a specified <tt>number</tt> | 289 | <li> <tt>number</tt>: causes the method to read a specified <tt>number</tt> |
289 | of bytes from the socket. | 290 | of bytes from the socket. |
290 | </ul> | 291 | </ul> |