diff options
author | Caleb Maclennan <caleb@alerque.com> | 2022-03-25 10:09:13 +0300 |
---|---|---|
committer | Caleb Maclennan <caleb@alerque.com> | 2022-03-25 10:59:23 +0300 |
commit | f7f0a77a3dbcd066c2f228ada63ee78546a01f78 (patch) | |
tree | da4ad00e3da5adb6ed9f9e4c3065bb621ac76516 /docs | |
parent | d3777f9d06df58732e6f87c8fb94efc984652c63 (diff) | |
download | luasocket-f7f0a77a3dbcd066c2f228ada63ee78546a01f78.tar.gz luasocket-f7f0a77a3dbcd066c2f228ada63ee78546a01f78.tar.bz2 luasocket-f7f0a77a3dbcd066c2f228ada63ee78546a01f78.zip |
docs: Drop obsolete changelog from docs index
Diffstat (limited to 'docs')
-rw-r--r-- | docs/index.html | 76 |
1 files changed, 0 insertions, 76 deletions
diff --git a/docs/index.html b/docs/index.html index 0364070..5982071 100644 --- a/docs/index.html +++ b/docs/index.html | |||
@@ -121,76 +121,6 @@ Aurich, Liam Devine, Alexey Melnichuk, and everybody else | |||
121 | that has helped bring this library back to life. | 121 | that has helped bring this library back to life. |
122 | </p> | 122 | </p> |
123 | 123 | ||
124 | <!-- whatsnew +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | ||
125 | |||
126 | <h2 id="new">What's New</h2> | ||
127 | |||
128 | <p> | ||
129 | Main changes for LuaSocket 3.0-rc1 are IPv6 support | ||
130 | and Lua 5.2 compatibility. | ||
131 | </p> | ||
132 | |||
133 | <ul> | ||
134 | <li> Added: Compatible with Lua 5.2</li> | ||
135 | <ul> | ||
136 | <li> Note that unless you define <tt>LUA_COMPAT_MODULE</tt>, | ||
137 | package tables will <em>not</em> be exported as globals!</li> | ||
138 | </ul> | ||
139 | <li> Added: IPv6 support;</li> | ||
140 | <ul> | ||
141 | <li> <tt>Socket.connect</tt> and <tt>socket.bind</tt> support IPv6 addresses;</li> | ||
142 | <li> <tt>Getpeername</tt> and <tt>getsockname</tt> support | ||
143 | IPv6 addresses, and return the socket family as a third value;</li> | ||
144 | <li> URL module updated to support IPv6 host names;</li> | ||
145 | <li> New <tt>socket.tcp6</tt> and <tt>socket.udp6</tt> functions;</li> | ||
146 | <li> New <tt>socket.dns.getaddrinfo</tt> and | ||
147 | <tt>socket.dns.getnameinfo</tt> functions;</li> | ||
148 | </ul> | ||
149 | <li> Added: <tt>getoption</tt> method;</li> | ||
150 | <li> Fixed: <tt>url.unescape</tt> was returning additional values;</li> | ||
151 | <li> Fixed: <tt>mime.qp</tt>, <tt>mime.unqp</tt>, | ||
152 | <tt>mime.b64</tt>, and <tt>mime.unb64</tt> could | ||
153 | mistaking their own stack slots for functions arguments;</li> | ||
154 | <li> Fixed: Receiving zero-length datagram is now possible;</li> | ||
155 | <li> Improved: Hidden all internal library symbols;</li> | ||
156 | <li> Improved: Better error messages;</li> | ||
157 | <li> Improved: Better documentation of socket options.</li> | ||
158 | <li> Fixed: manual sample of HTTP authentication now uses correct | ||
159 | "authorization" header (Alexandre Ittner);</li> | ||
160 | <li> Fixed: failure on bind() was destroying the socket (Sam Roberts);</li> | ||
161 | <li> Fixed: receive() returns immediatelly if prefix can satisfy | ||
162 | bytes requested (M Joonas Pihlaja);</li> | ||
163 | <li> Fixed: multicast didn't work on Windows, or anywhere | ||
164 | else for that matter (Herbert Leuwer, Adrian Sietsma);</li> | ||
165 | <li> Fixed: select() now reports an error when called with more | ||
166 | sockets than FD_SETSIZE (Lorenzo Leonini);</li> | ||
167 | <li> Fixed: manual links to home.html changed to index.html | ||
168 | (Robert Hahn);</li> | ||
169 | <li> Fixed: mime.unb64() would return an empty string on results that started | ||
170 | with a null character (Robert Raschke);</li> | ||
171 | <li> Fixed: HTTP now automatically redirects on 303 and 307 (Jonathan Gray);</li> | ||
172 | <li> Fixed: calling sleep() with negative numbers could | ||
173 | block forever, wasting CPU. Now it returns immediately (MPB);</li> | ||
174 | <li> Improved: FTP commands are now sent in upper case to | ||
175 | help buggy servers (Anders Eurenius);</li> | ||
176 | <li> Improved: known headers now sent in canonic | ||
177 | capitalization to help buggy servers (Joseph Stewart);</li> | ||
178 | <li> Improved: Clarified tcp:receive() in the manual (MPB);</li> | ||
179 | <li> Improved: Decent makefiles (LHF).</li> | ||
180 | <li> Fixed: RFC links in documentation now point to IETF (Cosmin Apreutesei).</li> | ||
181 | </ul> | ||
182 | |||
183 | <!-- old ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | ||
184 | |||
185 | <h2 id="old">Old Versions</h2> | ||
186 | |||
187 | <p> | ||
188 | All previous versions of the LuaSocket library can be downloaded <a | ||
189 | href="http://www.impa.br/~diego/software/luasocket/old"> | ||
190 | here</a>. Although these versions are no longer supported, they are | ||
191 | still available for those that have compatibility issues. | ||
192 | </p> | ||
193 | |||
194 | <!-- footer +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | 124 | <!-- footer +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> |
195 | 125 | ||
196 | <div class="footer"> | 126 | <div class="footer"> |
@@ -202,12 +132,6 @@ still available for those that have compatibility issues. | |||
202 | <a href="introduction.html">introduction</a> · | 132 | <a href="introduction.html">introduction</a> · |
203 | <a href="reference.html">reference</a> | 133 | <a href="reference.html">reference</a> |
204 | </p> | 134 | </p> |
205 | <p> | ||
206 | <small> | ||
207 | Last modified by Diego Nehab on <br> | ||
208 | Tue Jun 11 18:50:23 HKT 2013 | ||
209 | </small> | ||
210 | </p> | ||
211 | </center> | 135 | </center> |
212 | </div> | 136 | </div> |
213 | 137 | ||