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

4.104.114.84.95
Last change on this file since d50c0d2 was d50c0d2, checked in by Joel Sherrill <joel.sherrill@…>, on 04/26/02 at 21:34:58

2002-04-26 Eric Norum <eric.norum@…>

  • netinet/in_cksum_i386.c: Add volatile so the more agressive optimization in gcc 3.1 does not reorder things.
  • Property mode set to 100644
File size: 21.5 KB
Line 
12002-04-26      Eric Norum <eric.norum@usask.ca>
2
3        * netinet/in_cksum_i386.c: Add volatile so the more agressive
4        optimization in gcc 3.1 does not reorder things.
5
62002-04-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
7
8        * pppd/utils.c: Adapt to gcc-3.x.
9
102002-04-11      Chris Johns <ccj@acm.org>
11
12        * c/src/libnetworking/rtems/rtems_bsdnet.h: To address PR59, added
13        the drv_ctrl driver control block field to the ifconfig network driver
14        structure. This field is needed by the i82586 driver which was ported
15        from NetBSD as it had better hardware abstraction.
16
172002-04-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
18
19        * ChangeLog: Fix dates.
20
212002-03-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
22
23        * libc/rcmd.c: Replace __rtems w/ __rtems__.
24
252002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
26
27        * configure.ac:
28        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
29        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
30        * arpa/Makefile.am: Remove AUTOMAKE_OPTIONS.
31        * kern/Makefile.am: Remove AUTOMAKE_OPTIONS.
32        * Makefile.am: Remove AUTOMAKE_OPTIONS.
33        * lib/Makefile.am: Remove AUTOMAKE_OPTIONS.
34        * libc/Makefile.am: Remove AUTOMAKE_OPTIONS.
35        * machine/Makefile.am: Remove AUTOMAKE_OPTIONS.
36        * net/Makefile.am: Remove AUTOMAKE_OPTIONS.
37        * netinet/Makefile.am: Remove AUTOMAKE_OPTIONS.
38        * nfs/Makefile.am: Remove AUTOMAKE_OPTIONS.
39        * pppd/Makefile.am: Remove AUTOMAKE_OPTIONS.
40        * rtems/Makefile.am: Remove AUTOMAKE_OPTIONS.
41        * rtems_servers/Makefile.am: Remove AUTOMAKE_OPTIONS.
42        * rtems_telnetd/Makefile.am: Remove AUTOMAKE_OPTIONS.
43        * rtems_webserver/Makefile.am: Remove AUTOMAKE_OPTIONS.
44        * sys/Makefile.am: Remove AUTOMAKE_OPTIONS.
45        * vm/Makefile.am: Remove AUTOMAKE_OPTIONS.
46        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
47
482002-03-27      Thomas.Doerfler@imd-systems.de
49
50        * PR144
51        * nfs/bootp_subr.c bootpc_init(): Performs a write to memory address
52        0 when called for the first time. This is done when trying to clear
53        the variable "dhcp_hostname".
54
552002-03-27      Ilya Alexeev <ilya@continuum.ru>
56
57        * PR162
58        * net/if_ppp.c ppp_txdaemon(), net/if_pppvar.h pppstart(): Local
59        variables must not be used in a device write routines.  Now
60        ppp_softc structure have own character for writing to device
61        (sc_outchar).  I think that converting local variables to static
62        is not a right solution, because problems will occur in the case
63        of two or more ppp instances.
64        * net/ppp_tty.c pppstart(): Type of the ioffset variable must be
65        u_long, otherwise in the case of the big output packet endless
66        loop may occur.
67
682002-03-21      Ilya Alexeev <ilya@continuum.ru>
69
70        * net/if_ppp.c, net/ppp_tty.c: Initial preparations for multiple
71        PPPD connections.
72
732001-03-20      Till Straumann <strauman@SLAC.Stanford.EDU>
74
75        * PR158
76        * libc/rcmd.c, libc/rcmd.c: Enable the rcmd() library call by
77        commenting out the parts that deal with signals.  This enables
78        RTEMS to 'rsh' command to a server connecting fd to remote stdio.
79        The 'server-side' parts of this file which deal with authentication
80        are disabled since they are not needed.
81
822002-02-27      Ilya Alexeev <ilya@continuum.ru>
83
84        * net/if_ppp.c, pppd/auth.c, pppd/chat.c, pppd/pppd.h,
85        pppd/sys-rtems.c: Add server with pap-authorization
86        capabilities as well as eliminate some warnings.
87
882002-02-27      Eric Norum <eric.norum@usask.ca>
89
90        * net/radix.c: Properly handle fetching the default route when there
91        is no route.  This was a bug in the original FreeBSD code and this
92        fix is from an updated version of their code.
93
942002-02-01      Mike Siers <mikes@poliac.com>
95
96        * pppd/rtemspppd.c (rtems_pppd_disconnect): Modified to avoid bringing
97        the link down too fast.
98        NOTE: Mike reports successfully running at 56K baud on a direct link.
99
1002002-01-31      Mike Siers <mikes@poliac.com>
101
102        * pppd/rtemsdialer.h: New file missed in previous commit.
103
1042002-01-31      Mike Siers <mikes@poliac.com>
105
106        * Nice Update of PPPD support which eliminates the
107        requiremetn that drivers be in the termios TASK_DRIVEN mode.
108        Mike did significant testing and reports that it seems to be
109        more stable and handle larger packets better.  This patch
110        replaces the termios tasks with more general pppd network
111        driver tasks.  The functions pppinput() and pppstart() get
112        called from the interrupt service routine.
113        * Makefile.am, configure.ac, net/Makefile.am, net/bpf.h,
114        net/ethernet.h, net/if.c, net/if.h, net/if_arp.h, net/if_dl.h,
115        net/if_ethersubr.c, net/if_llc.h, net/if_loop.c, net/if_ppp.h,
116        net/if_pppvar.h, net/if_types.h, net/netisr.h, net/ppp-comp.h,
117        net/ppp_defs.h, net/pppcompress.h, net/radix.c, net/radix.h,
118        net/raw_cb.c, net/raw_cb.h, net/raw_usrreq.c, net/route.c,
119        net/route.h, net/rtsock.c, pppd/Makefile.am, pppd/README,
120        pppd/STATUS, pppd/auth.c, pppd/cbcp.c, pppd/ccp.c, pppd/ccp.h,
121        pppd/chap.c, pppd/chap.h, pppd/chap_ms.c, pppd/chap_ms.h,
122        pppd/chat.c, pppd/demand.c, pppd/fsm.c, pppd/fsm.h, pppd/ipcp.c,
123        pppd/ipcp.h, pppd/ipxcp.c, pppd/ipxcp.h, pppd/lcp.c, pppd/lcp.h,
124        pppd/magic.c, pppd/magic.h, pppd/options.c, pppd/patchlevel.h,
125        pppd/pathnames.h, pppd/pppd.8, pppd/pppd.h, pppd/rtemsmain.c,
126        pppd/rtemspppd.c, pppd/rtemspppd.h, pppd/sys-rtems.c, pppd/upap.c,
127        pppd/upap.h, pppd/utils.c, pppd/example/README,
128        pppd/example/netconfig.h, wrapup/Makefile.am: Modified.
129        * net/bsd-comp.c, net/if_ppp.c, net/ppp-deflate.c, net/ppp.h,
130        net/ppp_tty.c, net/pppcompress.c, net/zlib.c, net/zlib.h: New file.
131        * modem/, modem/.cvsignore, modem/Makefile.am, modem/ppp.c,
132        modem/ppp.h, modem/ppp_tty.c, modem/pppcompress.c: Subdirectory removed.
133
1342002-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
135
136        * rtems_telnetd/pty.c: Move config.h to were it belongs.
137        Remove printf (Reported by Till Straumann
138        <strauman@SLAC.Stanford.EDU>).
139
1402002-02-16      Eric Norum <eric.norum@usask.ca>
141
142        * lib/tftpDriver.clib/tftpDriver.c: Fix TFTP block number checking.
143
1442002-02-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
145
146        * pppd/sys-rtems.c: Remove unused variable status from
147        dodefaultroute.
148
1492002-02-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
150
151        * lib/tftpDriver.c: Remove set_errno_and_return_minus_one, include
152        <rtems/seterr.h>.
153
154
1552001-12-18      Eric Norum <eric.norum@usask.ca>
156
157        * lib/tftpDriver.c: Allow chdir() to work on TFTP `directories'
158        (path names with a / at the end) while disallowing open() operations
159        on TFTP `directories'.
160
1612001-12-07      Eric Norum <eric.norum@usask.ca>
162
163        * lib/tftpDriver.c: Restore write capability.
164
1652001-11-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
166
167        * arpa/Makefile.am: Remove stray lines.
168
1692001-10-18      Eric Norum <eric.norum@usask.ca>
170
171        * lib/tftpDriver.c: Properly handles ../ components in chdir() and
172        open() operations within the TFTP file system.
173
1742001-10-12      Mike Siers <mikes@poliac.com>
175
176        * Update to stable working state.  Congratulations Mike! :)
177        * modem_example: Directory removed.
178        * modem_example/16550.h, modem_example/README, modem_example/modem.c,
179        modem_example/modem.h, modem_example/ppp.c, modem_example/ppp.h,
180        modem_example/pppcompress.c: Files removed.
181        * pppd/example/pppd.options: New file.
182        * pppd/README, pppd/STATUS, pppd/cbcp.c, pppd/cbcp.h, pppd/chat.c,
183        pppd/pppd.h, pppd/rtemsmain.c: Updated.
184
1852001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
186
187        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
188        * configure.in: Remove.
189        * configure.ac: New file, generated from configure.in by autoupdate.
190
1912001-09-27      Eric Norum <eric.norum@usask.ca>
192
193        * lib/tftpDriver.c: Add limited chdir() support to the TFTP
194        filesystem.
195
1962001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
197
198        * machine/Makefile.am: Use 'PREINSTALL_FILES ='.
199        * net/Makefile.am: Use 'PREINSTALL_FILES ='.
200        * netinet/Makefile.am: Use 'PREINSTALL_FILES ='.
201        * vm/Makefile.am: Use 'PREINSTALL_FILES ='.
202        * pppd/Makefile.am: Use 'PREINSTALL_FILES ='.
203        * sys/Makefile.am: Use 'PREINSTALL_FILES ='.
204        * rtems_servers/Makefile.am: Use 'PREINSTALL_FILES ='.
205        * arpa/Makefile.am: Use 'PREINSTALL_FILES ='.
206        * nfs/Makefile.am: Use 'PREINSTALL_FILES ='.
207        * rtems_webserver/Makefile.am: Use 'PREINSTALL_FILES ='.
208        * rtems/Makefile.am: Use 'PREINSTALL_FILES ='.
209        * rtems_telnetd/Makefile.am: Use 'PREINSTALL_FILES ='.
210
2112001-09-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
212
213        * Makefile.am: Use PREINSTALL_FILES = to make automake-1.5 happy.
214
2152001-09-19      Eric Norum <eric.norum@usask.ca>
216
217        * lib/tftpDriver.c: Add some debugging capability.
218
2192001-09-19      Chris Johns <ccj@acm.org>
220
221        * nfs/bootp_subr.c, rtems/rtems_bootp.c, rtems/rtems_bsdnet.h,
222        rtems/rtems_bsdnet_internal.h Added support for populating the
223        initial "root" filesystem with information obtained via the DHCP
224        response.
225
2262001-08-16      Mike Siers <mikes@poliac.com>
227
228        * pppd/STATUS: Updated by Joel based upon email from Mike.
229        * pppd/cbcp.c, pppd/cbcp.h: Readded files.  These support callback
230        functionality that has not even been compiled under RTEMS yet.
231
2322001-08-16      Joel Sherrill <joel@OARcorp.com>
233
234        * pppd/example/Makefile: Removed.
235        * pppd/example/Makefile-user: Added was Makefile.  Renamed to
236        avoid bootstrap -c clobbering it.
237
2382001-08-16      Mike Siers <mikes@poliac.com>
239
240        * Update of PPPD to 2.3.11 from 2.3.5 and addition of an example
241        application.  Mike's notes on the modifications:
242           - renamed error() function because of namespace problems
243           - removed calls to the exit() funciton
244           - removed extra files from the pppd source directory
245           - defined pppd task constant values in rtemspppd.h
246           - modifyied example code to get actual tick per second value
247           - placed the pppd 2.3.11 man page file (pppd.8) into the pppd
248           directory
249        * pppd/cbcp.c, pppd/cbcp.h, pppd/main.c, pppd/ppp_tty.c,
250        pppd/pppmain.c, pppd/rtems-ppp.c, pppd/rtems-ppp.c: Deleted.
251        * pppd/pppd.8, pppd/rtemsmain.c, pppd/rtemspppd.c, pppd/rtemspppd.h,
252        pppd/sys-rtems.c, pppd/utils.c, pppd/example/Makefile,
253        pppd/example/README, pppd/example/init.c, pppd/example/netconfig.h,
254        pppd/example/ppp.conf, pppd/example/pppdapp.c, pppd/example/system.h:
255        New files.
256        * modem/ppp_tty.c, net/if_ppp.h, pppd/Makefile.am, pppd/README,
257        pppd/STATUS, pppd/auth.c, pppd/ccp.c, pppd/ccp.h, pppd/chap.c,
258        pppd/chap.h, pppd/chap_ms.c, pppd/chap_ms.h, pppd/chat.c,
259        pppd/demand.c, pppd/fsm.c, pppd/fsm.h, pppd/ipcp.c, pppd/ipcp.h,
260        pppd/ipxcp.c, pppd/ipxcp.h, pppd/lcp.c, pppd/lcp.h, pppd/magic.c,
261        pppd/magic.h, pppd/options.c, pppd/patchlevel.h,
262        pppd/pathnames.h, pppd/pppd.h, pppd/upap.c, pppd/upap.h: Modified.
263
2642001-08-16      Joel Sherrill <joel@OARcorp.com>
265
266        * rtems_telnetd/.cvsignore: New file.
267
2682001-08-09      Fernando-Ruiz Casas <correo@fernando-ruiz.com>
269
270        * Makefile.am, configure.in, rtems_servers/Makefile.am,
271        rtems_servers/telnetd.c, rtems_servers/telnetd.h,
272        rtems_telnetd/Makefile.am, rtems_telnetd/README, rtems_telnetd/icmds.c,
273        rtems_telnetd/pty.c, rtems_telnetd/pty.h, rtems_telnetd/telnetd.c,
274        rtems_telnetd/telnetd.h, wrapup/Makefile.am:
275          - pty and telnetd have a new subdir rtems_telnetd to avoid
276            the side effect when ftpd change.
277          - the tcp/ip stats have been implemented into icmds.c and
278            started when telnetd daemon is started.
279        * rtems_servers/telnetd.c, rtems_servers/telnetd.h: Removed.
280        * rtems_telnetd: New directory.
281        * rtems_telnetd/Makefile.am, rtems_telnetd/README,
282        rtems_telnetd/icmds.c, rtems_telnetd/pty.c, rtems_telnetd/pty.h,
283        rtems_telnetd/telnetd.c, rtems_telnetd/telnetd.h: New files.
284
2852001-05-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
286
287        * rtems_servers/Makefile.am: Deleted blank lines.
288
2892001-06-14      Joel Sherrill <joel@OARcorp.com>
290
291        * rtems_servers/telnetd.c, shell/telnetd.h: Moved from libmisc/shell
292        so the network stack to address network depenendency.
293        * rtems_servers/Makefile.am: Modified to reflect above.
294
2952001-05-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
296
297        * libc/Makefile.am: Remove -D__STRICT_ANSI__.
298
2992001-04-24      Eric Norum <eric.norum@usask.ca>
300
301        * lib/rtems_bsdnet_ntp.c: Modifications to make the RTEMS NTP
302        synchronization a little more robust -- no NTP daemon yet, but
303        at least it trys a little harder when the primary NTP server is down.
304
3052001-04-20  Radzislaw Galler  <rgaller@et.put.poznan.pl>
306
307        * modem/ppp.c, pppd/main.c, pppd/pppmain.c, pppd/rtems-ppp.c,
308        pppd/modem_example/modem.c, pppd/modem_example/ppp.c: Translated
309        Polish comments and other strings into English
310        * pppd/STATUS: updated to reflect the changes
311
3122001-04-20      Jake Janovetz <janovetz@uiuc.edu>
313
314        * rtems_servers/ftpd.c: Correct argument so hooks work again.
315
3162001-03-15      Ralf Corsepius <corsepius@faw.uni-ulm.de>
317
318        * include/.cvsignore: Remove dangling file.
319
3202001-01-31        Sergei Organov <osv@javad.ru>
321
322        * rtems_servers/ftp.d: Following changes:
323          - Hacks with current dir and root dir removed in favor of new libio
324            support for task-local current and root directories.
325          - Bug in `close_data_socket()' introduced by previous change fixed.
326          - `command_pasv()' changed to set timeout on socket we are listening
327            on and code fixed to don't close socket twice on error.
328          - `serr()' changed to clear `errno'.
329          - `data_socket()' changed to clear `errno' before `bind()'.
330          - `session()' changed to clear `errno' before processing session.
331          - `close_data_socket()' fixed to close both active and passive sockets
332          - Initialize info->data_socket to -1 in `daemon()'
333          - Initialize `fname' to empty string  in `exec_command()'
334
3352001-02-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
336
337        * Makefile.am, arpa/Makefile.am, machine/Makefile.am, net/Makefile.am,
338        netinet/Makefile.am, nfs/Makefile.am, rtems/Makefile.am,
339        rtems_servers/Makefile.am, rtems_webserver/Makefile.am,
340        sys/Makefile.am, vm/Makefile.am:
341        Apply include_*HEADERS instead of H_FILES.
342        * include/Makefile.am: Remove.
343        * Makefile.am: Add handling of *.h files.
344        * configure.in: Remove include/Makefile.
345
3462001-01-25      Eric Norum <eric.norum@usask.ca>
347
348        * lib/tftpDriver.c: Reduce first timeout interval.  This
349        improves throughput on systems which are dropping packets. 
350        Only the first timeout is reduced.  This keeps the number
351        of extra packets down on networks that are very busy and
352        dropping lots of packets.
353
3542001-01-24      Sergei Organov <osv@javad.ru>
355
356        * rtems_servers/ftpd.c, rtems_servers/ftpd.h: Major enhancements
357        as listed below:
358          - Timeouts on sockets implemented. 'idle' field added to
359            configuration. No timeout by default to keep backward compatibility.
360            Note: SITE IDLE command not implemented yet.
361          - Basic global access control implemented. 'access' field added to
362            configuration. No access limitations by default to keep backward
363            compatibility.
364          - Anchor data socket for active mode (using self IP and port 20.)
365          - Fixed default data port support (still not tested).
366          - Don't allow IP address different from originating host in
367            PORT command to improve security.
368          - Fixed bug in MDTM command.
369          - Check for correctness of parsing of argument in command_port().
370          - Fixed squeeze_path() to don't allow names like 'NAME/smth' where
371            'NAME' is not a directory.
372          - Command parsing a little bit improved: command names are now
373            converted to upper-case to be more compatible with RFC (command
374            names are not case-sensitive.)
375          - Reformat comments so that they have RTEMS look-and-feel.
376          - Fixed DELE, SITE CHMOD, RMD, MKD broken by previous changes
377          - True ASCII mode implemented (doesn't work for hooks and /dev/null)
378          - Passive mode implemented, PASV command added.
379          - Default port for data connection could be used (untested, can't find
380            ftp client that doesn't send PORT command)
381          - SYST reply changed to UNIX, as former RTEMS isn't registered name.
382          - Reply codes reviewed and fixed.
383
3842001-01-12      Sergei Organov <osv@javad.ru>
385
386        * rtems_servers/ftpd.c, rtems_servers/ftpd.h: Major enhancements
387        as listed below:
388            - use pool of pre-created threads to handle sessions instead of
389              creating/deleting threads on the fly
390            - LIST output is now similar to what "/bin/ls -al" would output,
391              thus FTP clients such Netscape are happy with it.
392            - LIST NAME now works (both for files and directories)
393            - added support for NLST, CDUP, and MDTM FTP commands to make
394              more FTP clients happy
395            - keep track of CWD for every session separately
396            - ability to specify root directory name for FTPD in configuration
397              table. FTPD will then create illusion for FTP clients that this
398              is actually root directory.
399            - ignore options sent in commands, thus LIST -al FILE works and
400              doesn't try to list "-al" directory.
401            - buffers are allocated on stack instead of heap where possible to
402              eliminate malloc/free calls (avoid possible heap fragmentation
403              troubles).
404            - drop using of task notepad to pass parameters - use function
405              arguments instead
406            - use snprintf() instead of sprintf() as the latter is unsafe
407            - use of PF_INET in socket() instead of AF_INET
408
409            Here are ftp clients I've tried new FTPD with (all of them
410            running on Debian GNU/Linux 2.2):
411
412                 Lftp 2.1.10
413                 NcFTP 2.4.3
414                 Netscape 4.75
415                 ftp
416                 mc 4.5.49
417
4182001-01-02      Joel Sherrill <joel@OARcorp.com>
419
420        * CHANGELOG: Removed.
421        * README: Merged CHANGELOG contents as initial changes.
422
4232000-12-14      Eric Norum <eric.norum@usask.ca>
424
425        * lib/tftpDriver.c: Added write capability.
426
4272000-12-08      Joel Sherrill <joel@OARcorp.com>
428
429        * libc/linkaddr.c: Initialized variable to remove warning.
430        * modem/ppp.c, modem/ppp_tty.c: Made numerous variable declarations
431        conditional on PPP_COMPRESS and PPP_FILTER.  Commented out variables
432        that were not used because the code using them was commented out.
433        Removed totally unused variables.
434        * modem/pppcompress.c: Added parentheses to avoid warnings.
435        * pppd/pppmain.c: Removed numerous warnings.
436
4372000-11-30      Joel Sherrill <joel@OARcorp.com>
438
439        * modem/ppp_tty.c: Changed to include <rtems/termiostypes.h> since
440        that is an RTEMS specific header file.
441
4422000-11-30      Joel Sherrill <joel@OARcorp.com>
443
444        * sys/ttycom.h: Moved to lib/include/sys.
445        * Makefile.am: Modified to reflect above.
446
4472000-11-27      Joel Sherrill <joel@OARcorp.com>
448
449        * libc/res_init.c: Fix typo - adding missing # on include.
450
4512000-11-25      Eric Norum <eric.norum@usask.ca>
452
453        * libc/res_init.c: Move include to avoid compiler dumping core.
454
4552000-11-25  Antti P Miettinen  <antti.p.miettinen@nokia.com>
456
457        * wrapup/Makefile.am: Added modem subdir.
458        * configure.in, Makefile.am: Added modem subdir.
459        * net/Makefile.am: Added if_pppvar.h, pppcompress.h.
460        * pppd/Makefile.am: Added pppmain.c (which needs work).
461        * pppd/chat.c, pppd/fsm.c, pppd/fsm.h, pppd/ipxcp.c, pppd/main.c,
462        pppd/ppp_tty.c, pppd/upap.c: Changes from Thomas Doerfler
463        <Thomas.Doerfler@imd-systems.de> and cosmetic changes by me.
464        Actually main.c and ppp_tty.c should be scratched. The modem
465        subdir has the real ppp_tty.c and the real pppd main is in pppmain.c.
466
4672000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
468
469        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
470
4712000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
472
473        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
474
4752000-10-30      Joel Sherrill <joel@OARcorp.com>
476
477        * POSIX include files merged into newlib.  This resulted in
478        some definitions moving to other files and thus some secondary
479        effects in RTEMS source code.
480        * machine/types.h: Added _CLOCKID_T_ and _TIMER_T_ to be in sync
481        with newlib's <machine/types.h>.
482        * rtems/rtems_bsdnet_internal.h: newlib now includes definition
483        of struct itimerval in <sys/time.h>.
484
4852000-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
486
487        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
488        Switch to GNU canonicalization.
489
4902000-10-19  Antti P Miettinen  <anmietti@trshp.ntc.nokia.com>
491
492        * lib/tftpDriver.c: add comments to handlers struct function pointers.
493        * rtems/rtems_glue.c: move pointer arithmetic to be _after_
494        pointer has been checked against NULL.
495
4962000-10-18       Chris Johns <ccj@acm.org>
497
498        * pppd/ipxcp.c: Fixed a typo.
499
5002000-09-28      Joel Sherrill <joel@OARcorp.com>
501
502        * rtems_webserver/Makefile.am, rtems_webserver/base64.c,
503        rtems_webserver/base64.c: Renamed base64.c to wbase64.c.
504        * rtems_webserver/sock.c: Added file missed in merger.
505
5062000-09-22      Joel Sherrill <joel@OARcorp.com>
507
508        * machine/types.h, pppd/pppd.h, rtems/rtems_bsdnet_internal.h,
509        rtems_webserver/webmain.c: machine/types.h  should not have
510        included rtems.h.  It is now including precisely the
511        least amount of low level, yet portable .h files to get
512        the basic RTEMS types defined.  This rippled into other
513        files since rtems_bsdnet_internal.h used machine/types.h to include
514        rtems.h.
515
5162000-09-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
517
518        * ChangeLog: Cleanup.
519
5202000-09-05      Joel Sherrill <joel@OARcorp.com>
521
522        * rtems/rtems_syscall.c: Changed from O_NONBLOCK to internal
523        RTEMS_LIBIO_FLAGS_NO_DELAY to avoid O_NONBLOCK/O_NDELAY confusion
524        and to work with the converted flags.
525
5262000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
527
528        * kern/Makefile.am, lib/Makefile.am, libc/Makefile.am,
529        net/Makefile.am, netinet/Makefile.am, nfs/Makefile.am,
530        pppd/Makefile.am, rtems/Makefile.am, rtems_servers/Makefile.am,
531        rtems_webserver/Makefile.am, wrapup/Makefile.am: Include compile.am
532
5332000-09-01      Rosimildo daSilva <rdasilva@connecttel.com>
534
535        * emfdb.c: Removed stray semi-colon.  Reported on GoAhead
536        mailing lists by Jim Rudnicki <jdrudnicki@yahoo.com>
537
5382000-08-31      Joel Sherrill <joel@OARcorp.com>
539
540        * Merged version 2.1 of GoAhead webserver.  This update
541        was submitted by Antti P Miettinen <antti.p.miettinen@nokia.com>.
542        * NOTES, base64.c, ejIntrn.h, emfdb.c, emfdb.h, md5.h, md5c.c,
543        um.c, um.h: New files.
544        * wbase64.c: Removed.
545        * Makefile.am, asp.c, balloc.c, default.c, ej.h, ejlex.c, ejparse.c,
546        form.c, h.c, handler.c, mime.c, misc.c, ringq.c, rom.c, security.c,
547        socket.c, sym.c, uemf.c, uemf.h, url.c, value.c, webcomp.c, webmain.c,
548        webpage.c, webrom.c, webs.c, webs.h, websuemf.c, wsIntrn.h: Modified.
549
5502000-08-31      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
551
552        * netinet/tcp_input.c: Spelling corrections.
553
5542000-08-30      Joel Sherrill <joel@OARcorp.com>
555
556        * rtems_webserver/license.txt: New file.
557
5582000-08-10      Joel Sherrill <joel@OARcorp.com>
559
560        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.