source: rtems/c/src/exec/libnetworking/ChangeLog @ 38371dbe

4.104.114.84.95
Last change on this file since 38371dbe was 38371dbe, checked in by Joel Sherrill <joel.sherrill@…>, on 01/24/01 at 19:20:24

2001-01-24 Sergei Organov <osv@…>

  • rtems_servers/ftpd.c, rtems_servers/ftpd.h: Major enhancements as listed below:
    • Timeouts on sockets implemented. 'idle' field added to configuration. No timeout by default to keep backward compatibility. Note: SITE IDLE command not implemented yet.
    • Basic global access control implemented. 'access' field added to configuration. No access limitations by default to keep backward compatibility.
    • Anchor data socket for active mode (using self IP and port 20.)
    • Fixed default data port support (still not tested).
    • Don't allow IP address different from originating host in PORT command to improve security.
    • Fixed bug in MDTM command.
    • Check for correctness of parsing of argument in command_port().
    • Fixed squeeze_path() to don't allow names like 'NAME/smth' where 'NAME' is not a directory.
    • Command parsing a little bit improved: command names are now converted to upper-case to be more compatible with RFC (command names are not case-sensitive.)
    • Reformat comments so that they have RTEMS look-and-feel.
    • Fixed DELE, SITE CHMOD, RMD, MKD broken by previous changes
    • True ASCII mode implemented (doesn't work for hooks and /dev/null)
    • Passive mode implemented, PASV command added.
    • Default port for data connection could be used (untested, can't find ftp client that doesn't send PORT command)
    • SYST reply changed to UNIX, as former RTEMS isn't registered name.
    • Reply codes reviewed and fixed.
  • Property mode set to 100644
File size: 7.9 KB
Line 
12001-01-24      Sergei Organov <osv@javad.ru>
2
3        * rtems_servers/ftpd.c, rtems_servers/ftpd.h: Major enhancements
4        as listed below:
5          - Timeouts on sockets implemented. 'idle' field added to
6            configuration. No timeout by default to keep backward compatibility.
7            Note: SITE IDLE command not implemented yet.
8          - Basic global access control implemented. 'access' field added to
9            configuration. No access limitations by default to keep backward
10            compatibility.
11          - Anchor data socket for active mode (using self IP and port 20.)
12          - Fixed default data port support (still not tested).
13          - Don't allow IP address different from originating host in
14            PORT command to improve security.
15          - Fixed bug in MDTM command.
16          - Check for correctness of parsing of argument in command_port().
17          - Fixed squeeze_path() to don't allow names like 'NAME/smth' where
18            'NAME' is not a directory.
19          - Command parsing a little bit improved: command names are now
20            converted to upper-case to be more compatible with RFC (command
21            names are not case-sensitive.)
22          - Reformat comments so that they have RTEMS look-and-feel.
23          - Fixed DELE, SITE CHMOD, RMD, MKD broken by previous changes
24          - True ASCII mode implemented (doesn't work for hooks and /dev/null)
25          - Passive mode implemented, PASV command added.
26          - Default port for data connection could be used (untested, can't find
27            ftp client that doesn't send PORT command)
28          - SYST reply changed to UNIX, as former RTEMS isn't registered name.
29          - Reply codes reviewed and fixed.
30
312001-01-12      Sergei Organov <osv@javad.ru>
32
33        * rtems_servers/ftpd.c, rtems_servers/ftpd.h: Major enhancements
34        as listed below:
35            - use pool of pre-created threads to handle sessions instead of
36              creating/deleting threads on the fly
37            - LIST output is now similar to what "/bin/ls -al" would output,
38              thus FTP clients such Netscape are happy with it.
39            - LIST NAME now works (both for files and directories)
40            - added support for NLST, CDUP, and MDTM FTP commands to make
41              more FTP clients happy
42            - keep track of CWD for every session separately
43            - ability to specify root directory name for FTPD in configuration
44              table. FTPD will then create illusion for FTP clients that this
45              is actually root directory.
46            - ignore options sent in commands, thus LIST -al FILE works and
47              doesn't try to list "-al" directory.
48            - buffers are allocated on stack instead of heap where possible to
49              eliminate malloc/free calls (avoid possible heap fragmentation
50              troubles).
51            - drop using of task notepad to pass parameters - use function
52              arguments instead
53            - use snprintf() instead of sprintf() as the latter is unsafe
54            - use of PF_INET in socket() instead of AF_INET
55
56            Here are ftp clients I've tried new FTPD with (all of them
57            running on Debian GNU/Linux 2.2):
58
59                 Lftp 2.1.10
60                 NcFTP 2.4.3
61                 Netscape 4.75
62                 ftp
63                 mc 4.5.49
64
652001-01-02      Joel Sherrill <joel@OARcorp.com>
66
67        * CHANGELOG: Removed.
68        * README: Merged CHANGELOG contents as initial changes.
69
702000-12-14      Eric Norum <eric.norum@usask.ca>
71
72        * lib/tftpDriver.c: Added write capability.
73
742000-12-08      Joel Sherrill <joel@OARcorp.com>
75
76        * libc/linkaddr.c: Initialized variable to remove warning.
77        * modem/ppp.c, modem/ppp_tty.c: Made numerous variable declarations
78        conditional on PPP_COMPRESS and PPP_FILTER.  Commented out variables
79        that were not used because the code using them was commented out.
80        Removed totally unused variables.
81        * modem/pppcompress.c: Added parentheses to avoid warnings.
82        * pppd/pppmain.c: Removed numerous warnings.
83
842000-11-30      Joel Sherrill <joel@OARcorp.com>
85
86        * modem/ppp_tty.c: Changed to include <rtems/termiostypes.h> since
87        that is an RTEMS specific header file.
88
892000-11-30      Joel Sherrill <joel@OARcorp.com>
90
91        * sys/ttycom.h: Moved to lib/include/sys.
92        * Makefile.am: Modified to reflect above.
93
942000-11-27      Joel Sherrill <joel@OARcorp.com>
95
96        * libc/res_init.c: Fix typo - adding missing # on include.
97
982000-11-25      Eric Norum <eric.norum@usask.ca>
99
100        * libc/res_init.c: Move include to avoid compiler dumping core.
101
1022000-11-25  Antti P Miettinen  <antti.p.miettinen@nokia.com>
103
104        * wrapup/Makefile.am: Added modem subdir.
105        * configure.in, Makefile.am: Added modem subdir.
106        * net/Makefile.am: Added if_pppvar.h, pppcompress.h.
107        * pppd/Makefile.am: Added pppmain.c (which needs work).
108        * pppd/chat.c, pppd/fsm.c, pppd/fsm.h, pppd/ipxcp.c, pppd/main.c,
109        pppd/ppp_tty.c, pppd/upap.c: Changes from Thomas Doerfler
110        <Thomas.Doerfler@imd-systems.de> and cosmetic changes by me.
111        Actually main.c and ppp_tty.c should be scratched. The modem
112        subdir has the real ppp_tty.c and the real pppd main is in pppmain.c.
113
1142000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
115
116        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
117
1182000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
119
120        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
121
1222000-10-30      Joel Sherrill <joel@OARcorp.com>
123
124        * POSIX include files merged into newlib.  This resulted in
125        some definitions moving to other files and thus some secondary
126        effects in RTEMS source code.
127        * machine/types.h: Added _CLOCKID_T_ and _TIMER_T_ to be in sync
128        with newlib's <machine/types.h>.
129        * rtems/rtems_bsdnet_internal.h: newlib now includes definition
130        of struct itimerval in <sys/time.h>.
131
1322000-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
133
134        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
135        Switch to GNU canonicalization.
136
1372000-10-19  Antti P Miettinen  <anmietti@trshp.ntc.nokia.com>
138
139        * lib/tftpDriver.c: add comments to handlers struct function pointers.
140        * rtems/rtems_glue.c: move pointer arithmetic to be _after_
141        pointer has been checked against NULL.
142
1432000-10-18       Chris Johns <ccj@acm.org>
144
145        * pppd/ipxcp.c: Fixed a typo.
146
1472000-09-28      Joel Sherrill <joel@OARcorp.com>
148
149        * rtems_webserver/Makefile.am, rtems_webserver/base64.c,
150        rtems_webserver/base64.c: Renamed base64.c to wbase64.c.
151        * rtems_webserver/sock.c: Added file missed in merger.
152
1532000-09-22      Joel Sherrill <joel@OARcorp.com>
154
155        * machine/types.h, pppd/pppd.h, rtems/rtems_bsdnet_internal.h,
156        rtems_webserver/webmain.c: machine/types.h  should not have
157        included rtems.h.  It is now including precisely the
158        least amount of low level, yet portable .h files to get
159        the basic RTEMS types defined.  This rippled into other
160        files since rtems_bsdnet_internal.h used machine/types.h to include
161        rtems.h.
162
1632000-09-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
164
165        * ChangeLog: Cleanup.
166
1672000-09-05      Joel Sherrill <joel@OARcorp.com>
168
169        * rtems/rtems_syscall.c: Changed from O_NONBLOCK to internal
170        RTEMS_LIBIO_FLAGS_NO_DELAY to avoid O_NONBLOCK/O_NDELAY confusion
171        and to work with the converted flags.
172
1732000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
174
175        * kern/Makefile.am, lib/Makefile.am, libc/Makefile.am,
176        net/Makefile.am, netinet/Makefile.am, nfs/Makefile.am,
177        pppd/Makefile.am, rtems/Makefile.am, rtems_servers/Makefile.am,
178        rtems_webserver/Makefile.am, wrapup/Makefile.am: Include compile.am
179
1802000-09-01      Rosimildo daSilva <rdasilva@connecttel.com>
181
182        * emfdb.c: Removed stray semi-colon.  Reported on GoAhead
183        mailing lists by Jim Rudnicki <jdrudnicki@yahoo.com>
184
1852000-08-31      Joel Sherrill <joel@OARcorp.com>
186
187        * Merged version 2.1 of GoAhead webserver.  This update
188        was submitted by Antti P Miettinen <antti.p.miettinen@nokia.com>.
189        * NOTES, base64.c, ejIntrn.h, emfdb.c, emfdb.h, md5.h, md5c.c,
190        um.c, um.h: New files.
191        * wbase64.c: Removed.
192        * Makefile.am, asp.c, balloc.c, default.c, ej.h, ejlex.c, ejparse.c,
193        form.c, h.c, handler.c, mime.c, misc.c, ringq.c, rom.c, security.c,
194        socket.c, sym.c, uemf.c, uemf.h, url.c, value.c, webcomp.c, webmain.c,
195        webpage.c, webrom.c, webs.c, webs.h, websuemf.c, wsIntrn.h: Modified.
196
1972000-08-31      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
198
199        * netinet/tcp_input.c: Spelling corrections.
200
2012000-08-30      Joel Sherrill <joel@OARcorp.com>
202
203        * rtems_webserver/license.txt: New file.
204
2052000-08-10      Joel Sherrill <joel@OARcorp.com>
206
207        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.