Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | refactor: Address issues raised by linter | Thijs Schreijer | 2022-03-19 | 1 | -7/+7 |
| | |||||
* | Hide ftp.PORT "constant" as a local | Diego Nehab | 2016-03-07 | 1 | -2/+2 |
| | |||||
* | Family agostic FTP and expose HTTP/FTP url parsing | Diego Nehab | 2016-03-07 | 1 | -16/+51 |
| | |||||
* | Added support for FTP command lists | Diego Nehab | 2016-03-04 | 1 | -3/+12 |
| | |||||
* | fixed accidental global in `ftp.lua` | Thijs Schreijer | 2015-03-01 | 1 | -1/+1 |
| | |||||
* | Fix. recive 2xx while ftp.get cause timeout error | moteus | 2013-05-30 | 1 | -1/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In this example: >Client send: MDTM test.txt >Server response: 213 20120824120909 Because FTP server do not open new channel (2XX response) and LuaSocket try open new channel we get timeout. ```lua local ftp = require "socket.ftp" local ltn12 = require "ltn12" local url = require("socket.url") local URL = "ftp://USER:TEST@127.0.0.1"; local CMD = 'MDTM test.txt'; -- get timeout ftp.get{ url = URL; command = CMD; sink = ltn12.sink.table{}; } -- or we can use ftp.command ftp.command{ url = URL; command = URL, check = function(...) local status, data = ... return true end; } ``` | ||||
* | Build with Lua 5.2 without LUA_COMPAT_MODULE flag. | moteus | 2013-05-27 | 1 | -19/+20 |
| | | | | LUASOCKET_USE_GLOBAL flag enable create global variables when load socket/mime modules. | ||||
* | Making progress toward a release | Diego Nehab | 2012-04-23 | 1 | -1/+0 |
| | | | | | | | | | | 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 | ||||
* | Preliminary IPv6 support for v2.1 | Diego Nehab | 2012-04-11 | 1 | -1/+1 |
| | |||||
* | Saving before big changes to support IPv6. | Diego Nehab | 2011-05-25 | 1 | -2/+2 |
| | |||||
* | Global variable references. | Diego Nehab | 2007-07-11 | 1 | -3/+3 |
| | |||||
* | Chose option 1) for http.lua. | Diego Nehab | 2006-03-14 | 1 | -1/+1 |
| | | | | Need to fix everything to make sure it works with the new compat-5.1 | ||||
* | Fixing bugs... | Diego Nehab | 2006-03-13 | 1 | -1/+2 |
| | |||||
* | Few tweaks in installation, some missing files, etc. | Diego Nehab | 2005-11-22 | 1 | -13/+13 |
| | |||||
* | Bugs sent by David. | Diego Nehab | 2005-10-05 | 1 | -1/+0 |
| | |||||
* | Final push for release... | Diego Nehab | 2005-08-12 | 1 | -6/+6 |
| | |||||
* | Working on the manual. | Diego Nehab | 2005-06-14 | 1 | -1/+1 |
| | |||||
* | Bug in forward.lua. Wasn't breaking from the loop. | Diego Nehab | 2005-04-21 | 1 | -2/+2 |
| | |||||
* | Almost ready to release beta3 | Diego Nehab | 2005-01-02 | 1 | -1/+1 |
| | |||||
* | Last line of modules was simplified. | Diego Nehab | 2004-12-23 | 1 | -1/+1 |
| | |||||
* | Changes due to new compat-5.1 | Diego Nehab | 2004-12-23 | 1 | -2/+2 |
| | |||||
* | Almost ready for beta3 | Diego Nehab | 2004-11-27 | 1 | -10/+43 |
| | |||||
* | My own ltn12.filter.chain is done. | Diego Nehab | 2004-10-12 | 1 | -3/+6 |
| | | | | | Implemented part of DB's suggestion for ftp. Mimetest.lua generates the test file for base64 instead of loading from disk. | ||||
* | Using new module scheme. Still needs fine tuning. | Diego Nehab | 2004-09-27 | 1 | -3/+6 |
| | |||||
* | Fixing bugs... | Diego Nehab | 2004-06-20 | 1 | -1/+1 |
| | |||||
* | 2.0 alpha RELEASED! | Diego Nehab | 2004-06-18 | 1 | -12/+4 |
| | |||||
* | Implemented safe exceptions. This looks preeety good. | Diego Nehab | 2004-06-18 | 1 | -86/+96 |
| | |||||
* | Almost ready for distribution... | Diego Nehab | 2004-06-17 | 1 | -2/+2 |
| | |||||
* | smtp.c was eatten by mime.c | Diego Nehab | 2004-06-17 | 1 | -5/+0 |
| | |||||
* | Fixed smtp.lua loading. | Diego Nehab | 2004-06-16 | 1 | -3/+0 |
| | | | | | Adjusted tftp module. Added some comments. | ||||
* | Manual is almost done. HTTP is missing. | Diego Nehab | 2004-06-15 | 1 | -36/+37 |
| | | | | | | | Implemented new distribution scheme. Select is now purely C. HTTP reimplemented seems faster dunno why. LTN12 functions that coroutines fail gracefully. | ||||
* | Só pra não perder se der merda. | Diego Nehab | 2004-06-04 | 1 | -20/+21 |
| | |||||
* | Fine tuning the "require" business. | Diego Nehab | 2004-05-30 | 1 | -4/+7 |
| | |||||
* | Changed require"luasocket" to require"socket". | Diego Nehab | 2004-05-28 | 1 | -1/+1 |
| | |||||
* | Almost there. | Diego Nehab | 2004-05-28 | 1 | -2/+1 |
| | |||||
* | Committing with require. | Diego Nehab | 2004-05-28 | 1 | -13/+76 |
| | |||||
* | Working with in the manual. | Diego Nehab | 2004-05-26 | 1 | -1/+1 |
| | |||||
* | Have to check retr or stor command result before accepting data connection. | Diego Nehab | 2004-05-25 | 1 | -4/+3 |
| | |||||
* | FTP low-level working. | Diego Nehab | 2004-05-25 | 1 | -439/+118 |
| | | | | | SMTP connection oriented working. ltn12 improved. | ||||
* | New filter scheme. | Diego Nehab | 2004-03-16 | 1 | -255/+105 |
| | | | | | ltn12 and mime updated. smtp/ftp broken. | ||||
* | Worked on the manual. | Diego Nehab | 2004-02-04 | 1 | -0/+2 |
| | | | | | Implemented stuffing (needs test) Added cddb and qp examples. | ||||
* | Starting to use RCS in princeton again. Not behind a firewall anymore. | Diego Nehab | 2003-08-31 | 1 | -10/+9 |
| | |||||
* | Adjusted a few inconsistencies with the manual. | Diego Nehab | 2003-08-16 | 1 | -2/+2 |
| | |||||
* | Finished implementation of LuaSocket 2.0 alpha on Linux. | Diego Nehab | 2003-06-26 | 1 | -1/+1 |
| | | | | Some testing still needed. | ||||
* | Porting to LUA 5.0 final | Diego Nehab | 2003-05-25 | 1 | -23/+34 |
| | |||||
* | Closer to release... | Diego Nehab | 2003-03-28 | 1 | -1/+0 |
| | |||||
* | Finish port to Lua 5. Everything is working fine. | Diego Nehab | 2003-03-20 | 1 | -25/+26 |
| | | | | Still doesn't work in Windows. | ||||
* | Updated for Lua 4.1-w3. | Diego Nehab | 2002-07-08 | 1 | -62/+55 |
| | |||||
* | Changed some variable names. | Diego Nehab | 2001-09-26 | 1 | -20/+26 |
| | | | | Added correct scheme test. | ||||
* | Updated for LuaSocket 1.4. | Diego Nehab | 2001-09-12 | 1 | -227/+324 |
| | | | | Better tested, some name changes. |