aboutsummaryrefslogtreecommitdiff
path: root/doc/index.html
diff options
context:
space:
mode:
authorDiego Nehab <diego@impa.br>2013-06-11 19:10:03 +0800
committerDiego Nehab <diego@impa.br>2013-06-11 19:10:03 +0800
commit6e00ffd62f135c30be3b5a6404a722beb1bdf215 (patch)
treea49bf542aa24ae34e563ff6b0bd5a5e1a139b41f /doc/index.html
parent906abf29d146272512feddd74005a8833ee34e7d (diff)
downloadluasocket-6e00ffd62f135c30be3b5a6404a722beb1bdf215.tar.gz
luasocket-6e00ffd62f135c30be3b5a6404a722beb1bdf215.tar.bz2
luasocket-6e00ffd62f135c30be3b5a6404a722beb1bdf215.zip
Changing from 2.1-rc1 to 3.0-rc1.
Diffstat (limited to 'doc/index.html')
-rw-r--r--doc/index.html32
1 files changed, 19 insertions, 13 deletions
diff --git a/doc/index.html b/doc/index.html
index d8ee4a4..b8f8798 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -49,7 +49,7 @@ functionality commonly needed by applications that deal with the Internet.
49The core support has been implemented so that it is both efficient and 49The core support has been implemented so that it is both efficient and
50simple to use. It is available to any Lua application once it has been 50simple to use. It is available to any Lua application once it has been
51properly initialized by the interpreter in use. The code has been tested 51properly initialized by the interpreter in use. The code has been tested
52and runs well on several Windows and Unix platforms. </p> 52and runs well on several Windows and UNIX platforms. </p>
53 53
54<p> 54<p>
55Among the support modules, the most commonly used implement the 55Among the support modules, the most commonly used implement the
@@ -78,7 +78,7 @@ LuaSocket.
78</p> 78</p>
79 79
80<p> 80<p>
81Copyright &copy; 1999-2012 Diego Nehab. All rights reserved. <br> 81Copyright &copy; 1999-2013 Diego Nehab. All rights reserved. <br>
82Author: <A href="http://www.impa.br/~diego">Diego Nehab</a> 82Author: <A href="http://www.impa.br/~diego">Diego Nehab</a>
83</p> 83</p>
84 84
@@ -87,7 +87,7 @@ Author: <A href="http://www.impa.br/~diego">Diego Nehab</a>
87<h2 id=download>Download</h2> 87<h2 id=download>Download</h2>
88 88
89<p> 89<p>
90LuaSocket version 2.1-rc1 is now available for download! 90LuaSocket version 3.0-rc1 is now available for download!
91It is compatible with Lua&nbsp;5.1 and 5.2, and has 91It is compatible with Lua&nbsp;5.1 and 5.2, and has
92been tested on Windows&nbsp;XP, Linux, and Mac OS X. Chances 92been tested on Windows&nbsp;XP, Linux, and Mac OS X. Chances
93are it works well on most UNIX distributions and Windows flavors. 93are it works well on most UNIX distributions and Windows flavors.
@@ -96,7 +96,7 @@ are it works well on most UNIX distributions and Windows flavors.
96<p> 96<p>
97The library can be downloaded in source code from the 97The library can be downloaded in source code from the
98<a href="https://github.com/diegonehab/luasocket/downloads">LuaSocket 98<a href="https://github.com/diegonehab/luasocket/downloads">LuaSocket
99project page</a> at GitHub. Besides the full C and Lua source code 99project page</a> on GitHub. Besides the full C and Lua source code
100for the library, the distribution contains several examples, 100for the library, the distribution contains several examples,
101this user's manual and basic test procedures. 101this user's manual and basic test procedures.
102</p> 102</p>
@@ -113,11 +113,12 @@ manual to find out how to properly install the library.
113<p> 113<p>
114This marks the first release of LuaSocket that 114This marks the first release of LuaSocket that
115wholeheartedly embraces the open-source development 115wholeheartedly embraces the open-source development
116philosophy. After a long hiatus, Matthew Wild finally 116philosophy. After a long hiatus, Matthew Wild finally
117convinced me it was time for a release including IPv6 117convinced me it was time for a release including IPv6 and
118and Lua 5.2 support. Special thanks to Sam Roberts, Florian 118Lua 5.2 support. It was more work than we anticipated.
119Zeitz, and Paul Aurich, Liam Devine, and everybody else that 119Special thanks to Sam Roberts, Florian Zeitz, and Paul
120has helped bring this library back to life. 120Aurich, Liam Devine, Alexey Melnichuk, and everybody else
121that has helped bring this library back to life.
121</p> 122</p>
122 123
123<!-- whatsnew +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> 124<!-- whatsnew +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
@@ -125,12 +126,16 @@ has helped bring this library back to life.
125<h2 id=new>What's New</h2> 126<h2 id=new>What's New</h2>
126 127
127<p> 128<p>
128Main changes for LuaSocket&nbsp;2.1-rc1 are IPv6 support 129Main changes for LuaSocket&nbsp;3.0-rc1 are IPv6 support
129and Lua&nbsp;5.2 compatibility. 130and Lua&nbsp;5.2 compatibility.
130</p> 131</p>
131 132
132<ul> 133<ul>
133<li> Added: Compatible with Lua&nbsp;5.2 (using <tt>LUA_COMPAT_MODULE</tt>); 134<li> Added: Compatible with Lua&nbsp;5.2
135<ul>
136<li> Note that unless you define <tt>LUA_COMPAT_MODULE</tt>,
137package tables will <em>not</em> be exported as globals!
138</ul>
134<li> Added: IPv6 support; 139<li> Added: IPv6 support;
135<ul> 140<ul>
136<li> <tt>Socket.connect</tt> and <tt>socket.bind</tt> support IPv6 addresses; 141<li> <tt>Socket.connect</tt> and <tt>socket.bind</tt> support IPv6 addresses;
@@ -138,7 +143,8 @@ and Lua&nbsp;5.2 compatibility.
138IPv6 addresses, and return the socket family as a third value; 143IPv6 addresses, and return the socket family as a third value;
139<li> URL module updated to support IPv6 host names; 144<li> URL module updated to support IPv6 host names;
140<li> New <tt>socket.tcp6</tt> and <tt>socket.udp6</tt> functions; 145<li> New <tt>socket.tcp6</tt> and <tt>socket.udp6</tt> functions;
141<li> New <tt>socket.dns.getaddrinfo</tt> function; 146<li> New <tt>socket.dns.getaddrinfo</tt> and
147 <tt>socket.dns.getnameinfo</tt> functions;
142</ul> 148</ul>
143<li> Added: <tt>getoption</tt> method; 149<li> Added: <tt>getoption</tt> method;
144<li> Fixed: <tt>url.unescape</tt> was returning additional values; 150<li> Fixed: <tt>url.unescape</tt> was returning additional values;
@@ -176,7 +182,7 @@ still available for those that have compatibility issues.
176<p> 182<p>
177<small> 183<small>
178Last modified by Diego Nehab on <br> 184Last modified by Diego Nehab on <br>
179Mon Apr 16 21:58:56 HKT 2012 185Tue Jun 11 18:50:23 HKT 2013
180</small> 186</small>
181</p> 187</p>
182</center> 188</center>