source: rtems/c/src/libnetworking/ChangeLog @ f077f332

4.104.114.84.95
Last change on this file since f077f332 was 6fa6367, checked in by Joel Sherrill <joel.sherrill@…>, on 04/20/01 at 20:32:08

2001-04-20 Radzislaw Galler <rgaller@…>

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