| Commit message (Expand) | Author | Age | Files | Lines |
| * | Don't set the _file member of the FILE when opening a FTP connection. | John Baldwin | 2008-05-08 | 1 | -1/+0 |
| * | Revert back to accessing FILE internals directly. | John Baldwin | 2008-05-05 | 1 | -11/+19 |
| * | Unbreak build: libftpio gropes inside struct __sFILE. Implement | Marcel Moolenaar | 2008-05-03 | 1 | -19/+11 |
| * | Fix typo. | Stefan Farfeleder | 2005-02-14 | 1 | -1/+1 |
| * | Use socklen_t. | Stefan Farfeleder | 2005-02-14 | 1 | -5/+5 |
| * | Cope with 2292bis-01 getaddrinfo (no NI_WITHSCOPEID, always attach | Hajimu UMEMOTO | 2002-07-02 | 1 | -0/+1 |
| * | Modernize my email address. | Poul-Henning Kamp | 2002-03-25 | 1 | -1/+1 |
| * | Add __FBSDID()s to libftpio | Matthew Dillon | 2001-09-30 | 1 | -3/+3 |
| * | Fix two bugs: | Archie Cobbs | 2000-08-17 | 1 | -28/+8 |
| * | Separate parsing code of 229 replies from the code for 227 and 228. | Hajimu UMEMOTO | 2000-07-10 | 1 | -6/+13 |
| * | IPv6 support. | Hajimu UMEMOTO | 2000-07-05 | 1 | -75/+274 |
| * | Put the FTP_PASSIVE_MODE issue to rest once and for all. | Bill Fumerola | 2000-05-05 | 1 | -1/+1 |
| * | Make FTP_PASSIVE_MODE check more specific. | Jordan K. Hubbard | 2000-04-23 | 1 | -2/+3 |
| * | Explicitly use sigemptyset to clear a sigset_t. Explicit | Marcel Moolenaar | 1999-09-28 | 1 | -2/+7 |
| * | $Id$ -> $FreeBSD$ | Peter Wemm | 1999-08-28 | 1 | -1/+1 |
| * | Cause PORT commands to use the high IP port range. This makes fetch | Nick Sayer | 1999-03-30 | 1 | -2/+11 |
| * | Correctly figure out that the remove cannot do passive mode. | Poul-Henning Kamp | 1998-04-11 | 1 | -1/+3 |
| * | Change errno usage as a field in a structure and as an argument to a | John Birrell | 1997-12-20 | 1 | -25/+25 |
| * | Teach ftpErrString to format UNIX errnos, since at least ftpLogin() | Bill Fenner | 1997-10-02 | 1 | -1/+4 |
| * | Correct an ancient bogon which involved trying to read() from a | Jordan K. Hubbard | 1997-10-01 | 1 | -10/+8 |
| * | Many places in the code NULL is used in integer context, where | Poul-Henning Kamp | 1997-09-18 | 1 | -2/+2 |
| * | Revert $FreeBSD$ to $Id$ | Peter Wemm | 1997-02-22 | 1 | -1/+1 |
| * | Only send QUIT if the last operation didn't time out (otherwise you're | Jordan K. Hubbard | 1997-01-21 | 1 | -2/+5 |
| * | Yow! Is my face red... I just noticed (duh) that signal() always installs | Jordan K. Hubbard | 1997-01-17 | 1 | -9/+41 |
| * | Make the long-awaited change from $Id$ to $FreeBSD$ | Jordan K. Hubbard | 1997-01-14 | 1 | -1/+1 |
| * | Sanitize and extend SIGALRM timeout handling. | Jordan K. Hubbard | 1996-12-17 | 1 | -34/+59 |
| * | Oops, back out previous optimization, don't work as I expect | Andrey A. Chernov | 1996-11-14 | 1 | -4/+12 |
| * | Since ftpPutURL not use hostname cache, optimize it by always closing | Andrey A. Chernov | 1996-11-14 | 1 | -13/+5 |
| * | For functions ftpGetURL, ftpPutURL, ftpLogin it was impossible to know | Andrey A. Chernov | 1996-11-14 | 1 | -9/+33 |
| * | Oops, forget the fact that several ftp connections can be active | Andrey A. Chernov | 1996-11-14 | 1 | -8/+4 |
| * | 1) Don't allow endless recursion in ftp_close when it attempts to | Andrey A. Chernov | 1996-11-14 | 1 | -2/+8 |
| * | Send PASV instead of PASSIVE. | Jordan K. Hubbard | 1996-10-10 | 1 | -2/+2 |
| * | Make libftpio 64-bit clean. | Peter Wemm | 1996-09-19 | 1 | -22/+29 |
| * | Intelligently cache previous connection to host if we can still | Jordan K. Hubbard | 1996-08-31 | 1 | -10/+32 |
| * | D'oh! verbose output should go to stderr. | Jordan K. Hubbard | 1996-08-24 | 1 | -2/+2 |
| * | Implement a change suggested by Archie Cobbs - the seekto argument should | Jordan K. Hubbard | 1996-08-21 | 1 | -2/+3 |
| * | Add an ftpErrString() function for returning human readable failure | Jordan K. Hubbard | 1996-08-21 | 1 | -1/+12 |
| * | 1. Add verbose flag to ftp_login() | Jordan K. Hubbard | 1996-08-03 | 1 | -7/+8 |
| * | Implement an ftpVerbose() hook. | Jordan K. Hubbard | 1996-07-04 | 1 | -1/+10 |
| * | Fix a bug in the way binary/ascii settings were being done. New | Jordan K. Hubbard | 1996-06-22 | 1 | -38/+73 |
| * | Manage control connections a little better for the URL routines. | Jordan K. Hubbard | 1996-06-17 | 1 | -5/+13 |
| * | Make binary mode the default. | Jordan K. Hubbard | 1996-06-17 | 1 | -1/+2 |
| * | Stamp out a potential memory leak. | Jordan K. Hubbard | 1996-06-17 | 1 | -9/+16 |
| * | Rethink and reimpliment the way RESTARTS are handled. The method I inheirited | Jordan K. Hubbard | 1996-06-17 | 1 | -24/+13 |
| * | Add a feature: If the environment variable FTP_PASSIVE_MODE is defined | Jordan K. Hubbard | 1996-06-17 | 1 | -1/+3 |
| * | Bring in a new library `libftpio', so named to avoid clashes with older | Jordan K. Hubbard | 1996-06-17 | 1 | -0/+686 |