source: rtems/c/src/exec/libnetworking/ChangeLog @ a2cc545e

4.104.114.84.95
Last change on this file since a2cc545e was a2cc545e, checked in by Joel Sherrill <joel.sherrill@…>, on 03/15/01 at 13:42:58

2001-03-15 Ralf Corsepiu <corsepius@…>

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