aboutsummaryrefslogtreecommitdiff
path: root/doc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #116 from linuxmaniac/masterDiego Nehab2019-02-241-0/+6
|\ | | | | Add "tcp-keepidle", "tcp-keepcnt" and "tcp-keepintvl" options
| * Add "tcp-keepidle", "tcp-keepcnt" and "tcp-keepintvl" optionsVictor Seva2014-12-051-0/+6
| |
* | http.lua: allow override of hard-coded 5 max redirectsE. Westbrook2019-02-231-3/+5
| |
* | Add ltn12.source.table()E. Westbrook2018-06-052-1/+12
| |
* | Hide ftp.PORT "constant" as a localDiego Nehab2016-03-071-1/+0
| |
* | Remove global PORT. Fix https redirect.Diego Nehab2016-03-041-2/+5
| |
* | Added gettimeout for completeness.Diego Nehab2016-03-046-519/+561
| | | | | | | | | | Also documented. Rordered manuals so order is alphabetical.
* | Added support for FTP command listsDiego Nehab2016-03-041-2/+4
| |
* | Clarify documentation for try/protect.Philipp Janda2016-02-241-4/+6
| |
* | Don't swallow errors in finalizers.Philipp Janda2016-02-241-2/+1
| |
* | Update HTML docs for try/protectmpeterv2016-02-211-10/+5
| |
* | When zero-timeout, only try first address in connect.Diego Nehab2015-12-031-5/+8
| |
* | Changed buffer-per-socket to buffer-per-operation.Diego Nehab2015-10-063-27/+33
| | | | | | | | | | | | | | | | This is a difficult tradeoff to measure. I think large datagrams won't be used very frequently. So it is better to not lock a large buffer to each socket object and instead allocate and deallocate for each operation receiving a datagram larger than UDP_DATAGRAMSIZE.
* | Added support for arbitrary datagram sizes.Diego Nehab2015-10-051-6/+28
| | | | | | | | | | The maximum size is still constant per UDP object, but the size can be speficied at creation time.
* | Merge branch 'agnostic'Diego Nehab2015-08-253-146/+220
|\ \ | | | | | | | | | Seems safe to move to master.
| * | Fixes suggested by @Florob in #147.Diego Nehab2015-08-252-0/+12
| | |
| * | New agnostic IPv4 IPv6 functions.Diego Nehab2015-08-223-146/+208
| | | | | | | | | | | | | | | Also dealing with EPROTOTYPE Yosemite seems to be throwing at us for no reason.
* | | Merge pull request #84 from PixelToast/patch-2Diego Nehab2015-08-241-2/+1
|\ \ \ | |/ / |/| | the universe has only existed for 43.8 years
| * | the universe has only existed for 43.8 yearsPixelToast2013-11-071-2/+1
| |/
* / white backgroundTsT2014-11-281-0/+1
|/ | | white background (successfully tested on https://tst2005.github.io/luasocket/ in https://tst2005.github.io/luasocket/reference.css )
* Change link to github page.v3.0-rc1Diego Nehab2013-06-141-2/+2
|
* Update NEW file and sectionDiego Nehab2013-06-142-4/+27
|
* Changing from 2.1-rc1 to 3.0-rc1.Diego Nehab2013-06-114-25/+25
|
* Fix udp:setpeername("*")Diego Nehab2012-08-231-1/+3
| | | | | | | | | | | | | | There seems to be a curious difference between MacOS and Linux and I am not sure if this is documented. When you break a "connection" on Mac OS, you only eliminate the peer association, but the local address remains bound. On Linux, breaking a "connection" eliminates the binding to the local address. Have you guys ever come accross this? Another irritating difference is that connect() returns the error EAFNOSUPPORT on Mac OS. I am going to ignore all errors when the reason for calling connect() is simply to break the "connection".
* Add new bug fix comment.Diego Nehab2012-08-011-0/+3
|
* socket.connect now implemented in the C coreSam Roberts2012-05-102-3/+10
| | | | | | | This avoid socket.lua duplicating the iteration over the results of getaddrinfo(). Some problems with the C implementation not initializing sockets or the luasocket family have also been fixed, and error reporting made more robust.
* Fixed getpeername/getsockname situationDiego Nehab2012-04-243-11/+21
| | | | | | | - Added IPv6 support to getsockname - Simplified getpeername implementation - Added family to return of getsockname and getpeername and added modification to the manual to describe
* Making progress toward a releaseDiego Nehab2012-04-236-8/+36
| | | | | | | | | | Documented headers.lua Update copyright date everywhere Remove RCSID from files Move version back to 2.1 rather than 2.1.1 Fixed url package to support ipv6 hosts Changed "domain" to "family" in tcp and udp structures Implemented getfamily methods
* First stab at documenationDiego Nehab2012-04-178-157/+318
| | | | | | | | | Update Lua and Luasocket version in samples and in documentation Documented ipv5_v6only default option being set Documented tcp6 and udp6 Documented dns.getaddrinfo Documented zero-sized datagram change? Documented getoption
* Merge branch 'git-sam' into diego-sam-mwild-integrationSam Roberts2012-04-113-6/+110
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts in options.c were just due to independent small functions being close to each other. unix.c in mwild was broken, it wasn't using LUASOCKET_API. serial.c needed luaL_reg renamed, and to use LUASOCKET_API. makefile didn't respect standard DESTDIR and prefix makefile variables, and didn't allow LUAV variable to select lua version to build against. I've tested the top-level install-both target builds and installs against both lua5.1 and lua5.2, but not done further testing. Conflicts: README config gem/ltn012.tex makefile src/makefile src/options.c src/options.h src/tcp.c src/usocket.c
| * Support getoption method for tcp objects.Sam Roberts2012-04-112-1/+35
| |
| * Fix links to home.html, they should be to index.html.Sam Roberts2012-04-1114-55/+55
| | | | | | | | home.html doesn't exist, index.html does.
| * Document dirty, getfd, and setfd for select and tcp.Sam Roberts2012-04-113-0/+67
| |
| * Reference index was missing documented APIs, and only partially alphabetized.Sam Roberts2012-04-111-5/+8
| |
* | Saving before big changes to support IPv6.Diego Nehab2011-05-256-32/+31
| |
* | Decent makefiles!Diego Nehab2009-05-2714-117/+121
| |
* | New release.Diego Nehab2007-10-132-3/+7
|/
* Global variable references.Diego Nehab2007-07-111-1/+1
|
* Typo.Diego Nehab2007-06-151-1/+1
|
* Almost ready to release.Diego Nehab2007-06-152-56/+28
|
* Crashy bug fixed in recvraw.Diego Nehab2007-06-111-4/+6
| | | | Also fixed returns on closed socket.
* Tidy.Diego Nehab2006-04-201-2/+1
|
* Spell checked and updated modification date.Diego Nehab2006-04-2014-15/+15
|
* Almost ready to release 2.0.1Diego Nehab2006-04-202-21/+41
|
* Mentions that closed sockets are ignored by select.Diego Nehab2006-04-141-0/+5
|
* http.request was using old host header during redirects.Diego Nehab2006-04-131-0/+2
|
* Almost done 2.0.1.Diego Nehab2006-04-033-62/+29
|
* Bug in footer.Diego Nehab2005-12-011-1/+0
|
* Simplified documentation of send().Diego Nehab2005-11-241-28/+11
|
* Changed LIB/SHARE to CDIR/LDIR.Diego Nehab2005-11-221-18/+18
|