diff options
author | Diego Nehab <diego@tecgraf.puc-rio.br> | 2004-06-16 01:02:14 +0000 |
---|---|---|
committer | Diego Nehab <diego@tecgraf.puc-rio.br> | 2004-06-16 01:02:14 +0000 |
commit | 8e80e38f2c3121242b3b2f7a45a960c9af4d1a68 (patch) | |
tree | 4c643fe319f364a87767a287bfcecb402a524d5e /doc/index.html | |
parent | d46f7a09a768b146f2f3cdc9a6a50357832bd1c7 (diff) | |
download | luasocket-8e80e38f2c3121242b3b2f7a45a960c9af4d1a68.tar.gz luasocket-8e80e38f2c3121242b3b2f7a45a960c9af4d1a68.tar.bz2 luasocket-8e80e38f2c3121242b3b2f7a45a960c9af4d1a68.zip |
Manual almost there.
Diffstat (limited to 'doc/index.html')
-rw-r--r-- | doc/index.html | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/doc/index.html b/doc/index.html index c4c1e2f..7a3afa8 100644 --- a/doc/index.html +++ b/doc/index.html | |||
@@ -187,18 +187,18 @@ the changes that made it into version 2.0: | |||
187 | </ul> | 187 | </ul> |
188 | 188 | ||
189 | <p> | 189 | <p> |
190 | Lots of changes in the Lua modules, too. The new MIME and LTN12 modules | 190 | Lots of changes in the Lua modules, too! |
191 | make all other modules much more powerful. The main new functionality is | ||
192 | the support for multipart messages in the SMTP module. | ||
193 | </p> | 191 | </p> |
194 | 192 | ||
195 | <ul> | 193 | <ul> |
196 | 194 | <li> New MIME and LTN12 modules make all other modules much more powerful; | |
197 | <li> | 195 | <li> Support for multipart messages in the SMTP module; |
198 | 196 | <li> The old callback mechanism of FTP and HTTP has been replaced with LTN12 sources and sinks, | |
197 | with advantage; | ||
198 | <li> FTP, HTTP, and SMTP are implemented in multiple levels in such a way | ||
199 | that users will have no problems extending the functionality. | ||
199 | </ul> | 200 | </ul> |
200 | 201 | ||
201 | |||
202 | <!-- incompatible +++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | 202 | <!-- incompatible +++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> |
203 | 203 | ||
204 | <h3 id=incompatible>Incompatibilities with previous versions</h3> | 204 | <h3 id=incompatible>Incompatibilities with previous versions</h3> |
@@ -217,7 +217,11 @@ agree the new stuff is better; | |||
217 | <tt>sendto</tt>, <tt>setpeername</tt> and <tt>setsockname</tt>, | 217 | <tt>sendto</tt>, <tt>setpeername</tt> and <tt>setsockname</tt>, |
218 | return convention WILL break old code; | 218 | return convention WILL break old code; |
219 | 219 | ||
220 | <li> Interface to options has changed; | 220 | <li> To enable local binding before connect, the <tt>bind</tt> method |
221 | does not call <tt>listen</tt> anymore. It is the new <tt>listen</tt> | ||
222 | method that turns a TCP object into a server object; | ||
223 | |||
224 | <li> Interface to options has changed. | ||
221 | 225 | ||
222 | </ul> | 226 | </ul> |
223 | 227 | ||