]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/net/ftpclient/v2_0/ChangeLog
unified MX27, MX25, MX37 trees
[karo-tx-redboot.git] / packages / net / ftpclient / v2_0 / ChangeLog
1 2006-09-11  Daniel Néri  <daniel.neri@sigicom.se>
2
3         * src/ftpclient.c (send_cmd): Use correct variable in error check.
4
5 2005-07-30  Andrew Lunn  <andrew.lunn@ascom.ch>
6
7         * src/ftpclient.c (connect_to_server): Use socklen_t to avoid
8         compiler warning.
9
10 2004-10-04  Andrew Lunn  <andrew.lunn@ascom.ch>
11
12         * src/ftpclient.c (opendatasock): Don't clobber the socket
13         variable with a temporary variable of local scope.
14
15 2004-05-24  Gary Thomas  <gary@mlbassoc.com>
16
17         * src/ftpclient.c: 
18         * include/ftpclient.h:
19         * cdl/ftpclient.cdl: Add new functions 'ftp_get_var()' and 'ftp_put_var()'
20         which allow for streams of data instead of fixed buffers.
21
22 2003-07-02  Daniel Néri  <daniel.neri@sigicom.se>
23
24         * src/ftpclient.c (send_cmd): Fix typo in error message.
25         (opendatasock): Use snprintf instead of sprintf.
26
27 2003-04-28  Andrew Lunn  <andrew.lunn@ascom.ch>
28
29         * src/ftpclient.c (connect_to_server): Added support for
30         IPv6. This meant changing from using the PORT command to using
31         EPRT, when setting up the data connection. EPRT is protocol 
32         independant. 
33         * tests/ftpclient1.c (ftp_test): Added tests which use IPv6
34         addresses. Fixed a few minor bugs with format strings.
35         * doc/ftpclient.sgml: Mention we support IPv6 and DNS.
36         
37 2003-02-24  Jonathan Larmour  <jifl@eCosCentric.com>
38
39         * cdl/ftpclient.cdl: Add doc link.
40
41 2002-08-06  Andrew Lunn <andrew.lunn@ascom.ch>
42
43         * src/ftpclient.c: Send "quit" not "quit " to keep some servers
44           happy.  Also deal with multi line replies correctly.
45         
46 2002-02-22  Hugo Tyson  <hmt@redhat.com>
47
48         * doc/ftpclient.sgml: New file.  Document it.
49
50 2001-12-04  Andrew Lunn  <andrew.lunn@ascom.ch>
51
52         * src/ftpclient.c: Allow it to compile!
53
54 2001-11-04  Andrew Lunn  <andrew.lunn@ascom.ch>
55         
56         * First version. Implements an FTP client which can get and put 
57           files on a server. 
58         
59 //===========================================================================
60 //####ECOSGPLCOPYRIGHTBEGIN####
61 // -------------------------------------------
62 // This file is part of eCos, the Embedded Configurable Operating System.
63 // Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
64 // Copyright (C) 2003 Andrew Lunn.      
65 //
66 // eCos is free software; you can redistribute it and/or modify it under
67 // the terms of the GNU General Public License as published by the Free
68 // Software Foundation; either version 2 or (at your option) any later version.
69 //
70 // eCos is distributed in the hope that it will be useful, but WITHOUT ANY
71 // WARRANTY; without even the implied warranty of MERCHANTABILITY or
72 // FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
73 // for more details.
74 //
75 // You should have received a copy of the GNU General Public License along
76 // with eCos; if not, write to the Free Software Foundation, Inc.,
77 // 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
78 //
79 // As a special exception, if other files instantiate templates or use macros
80 // or inline functions from this file, or you compile this file and link it
81 // with other works to produce a work based on this file, this file does not
82 // by itself cause the resulting work to be covered by the GNU General Public
83 // License. However the source code for this file must still be made available
84 // in accordance with section (3) of the GNU General Public License.
85 //
86 // This exception does not invalidate any other reasons why a work based on
87 // this file might be covered by the GNU General Public License.
88 //
89 // Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
90 // at http://sources.redhat.com/ecos/ecos-license/
91 // -------------------------------------------
92 //####ECOSGPLCOPYRIGHTEND####
93 //===========================================================================
94