source: rtems/cpukit/libnetworking/ChangeLog @ 126405d9

4.104.114.84.95
Last change on this file since 126405d9 was 126405d9, checked in by Joel Sherrill <joel.sherrill@…>, on 04/24/01 at 21:02:03

2000-04-24 Eric Norum <eric.norum@…>

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