1 |
27 |
unneback |
2003-02-24 Jonathan Larmour
|
2 |
|
|
|
3 |
|
|
* cdl/ftpclient.cdl: Add doc link.
|
4 |
|
|
|
5 |
|
|
2002-08-06 Andrew Lunn
|
6 |
|
|
|
7 |
|
|
* src/ftpclient.c: Send "quit" not "quit " to keep some servers
|
8 |
|
|
happy. Also deal with multi line replies correctly.
|
9 |
|
|
|
10 |
|
|
2002-02-22 Hugo Tyson
|
11 |
|
|
|
12 |
|
|
* doc/ftpclient.sgml: New file. Document it.
|
13 |
|
|
|
14 |
|
|
2001-12-04 Andrew Lunn
|
15 |
|
|
|
16 |
|
|
* src/ftpclient.c: Allow it to compile!
|
17 |
|
|
|
18 |
|
|
2001-11-04 Andrew Lunn
|
19 |
|
|
|
20 |
|
|
* First version. Implements an FTP client which can get and put
|
21 |
|
|
files on a server.
|
22 |
|
|
|
23 |
|
|
//===========================================================================
|
24 |
|
|
//####ECOSGPLCOPYRIGHTBEGIN####
|
25 |
|
|
// -------------------------------------------
|
26 |
|
|
// This file is part of eCos, the Embedded Configurable Operating System.
|
27 |
|
|
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
|
28 |
|
|
//
|
29 |
|
|
// eCos is free software; you can redistribute it and/or modify it under
|
30 |
|
|
// the terms of the GNU General Public License as published by the Free
|
31 |
|
|
// Software Foundation; either version 2 or (at your option) any later version.
|
32 |
|
|
//
|
33 |
|
|
// eCos is distributed in the hope that it will be useful, but WITHOUT ANY
|
34 |
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
35 |
|
|
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
36 |
|
|
// for more details.
|
37 |
|
|
//
|
38 |
|
|
// You should have received a copy of the GNU General Public License along
|
39 |
|
|
// with eCos; if not, write to the Free Software Foundation, Inc.,
|
40 |
|
|
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
|
41 |
|
|
//
|
42 |
|
|
// As a special exception, if other files instantiate templates or use macros
|
43 |
|
|
// or inline functions from this file, or you compile this file and link it
|
44 |
|
|
// with other works to produce a work based on this file, this file does not
|
45 |
|
|
// by itself cause the resulting work to be covered by the GNU General Public
|
46 |
|
|
// License. However the source code for this file must still be made available
|
47 |
|
|
// in accordance with section (3) of the GNU General Public License.
|
48 |
|
|
//
|
49 |
|
|
// This exception does not invalidate any other reasons why a work based on
|
50 |
|
|
// this file might be covered by the GNU General Public License.
|
51 |
|
|
//
|
52 |
|
|
// Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
|
53 |
|
|
// at http://sources.redhat.com/ecos/ecos-license/
|
54 |
|
|
// -------------------------------------------
|
55 |
|
|
//####ECOSGPLCOPYRIGHTEND####
|
56 |
|
|
//===========================================================================
|
57 |
|
|
|