source: rtems/c/src/libnetworking/ChangeLog @ 6186657a

4.104.114.84.95
Last change on this file since 6186657a was 6186657a, checked in by Ralf Corsepius <ralf.corsepius@…>, on 06/26/02 at 17:04:38

2002-06-26 Ralf Corsepius <corsepiu@…>

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