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

4.104.114.84.95
Last change on this file since d85594d was d85594d, checked in by Joel Sherrill <joel.sherrill@…>, on 05/10/01 at 13:03:32

2001-05-09 Ralf Corsepius <corsepiu@…>

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