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

4.104.114.84.95
Last change on this file since c1f3fc04 was c1f3fc04, checked in by Joel Sherrill <joel.sherrill@…>, on 05/17/02 at 18:28:26

2002-05-16 Ralf Corsepius <corsepiu@…>

  • rtems/mkrootfs.c: Add (relocated from libmisc/rootfs).
  • rtems/mkrootfs.h: Ditto.
  • rtems/Makefile.am: Reflect changes above.
  • Property mode set to 100644
File size: 22.1 KB
RevLine 
[c1f3fc04]12002-05-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2
3        * rtems/mkrootfs.c: Add (relocated from libmisc/rootfs).
4        * rtems/mkrootfs.h: Ditto.
5        * rtems/Makefile.am: Reflect changes above.
6
[c7286d94]72002-05-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
8
9        * sys/ioctl.h: Remove.
10        * sys/sockio.h: Remove.
11        * sys/filio.h: Remove.
12        * sys/Makefile.am: Reflect changes above.
13
[06549dcf]142001-05-14      Joel Sherrill <joel@OARcorp.com>
[3ce2907]15
[06549dcf]16        * ChangeLog: Corrected -- entry should have been in libchip.
17 
[51b39864]182002-05-01      Eric Norum <eric.norum@usask.ca>
19
20        * machine/in_cksum.h: Per PR200 fix multi-line inline assembly
21        to satisfy gcc 3.1 and newer.
22
[d50c0d2]232002-04-26      Eric Norum <eric.norum@usask.ca>
24
25        * netinet/in_cksum_i386.c: Add volatile so the more agressive
26        optimization in gcc 3.1 does not reorder things.
27
[a81a8f8]282002-04-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
29
30        * pppd/utils.c: Adapt to gcc-3.x.
31
[5bfc8912]322002-04-11      Chris Johns <ccj@acm.org>
33
34        * c/src/libnetworking/rtems/rtems_bsdnet.h: To address PR59, added
35        the drv_ctrl driver control block field to the ifconfig network driver
36        structure. This field is needed by the i82586 driver which was ported
37        from NetBSD as it had better hardware abstraction.
38
[25b4446]392002-04-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
40
41        * ChangeLog: Fix dates.
42
[51301198]432002-03-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
44
45        * libc/rcmd.c: Replace __rtems w/ __rtems__.
46
[01d48bf8]472002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
48
49        * configure.ac:
50        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
51        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
52        * arpa/Makefile.am: Remove AUTOMAKE_OPTIONS.
53        * kern/Makefile.am: Remove AUTOMAKE_OPTIONS.
54        * Makefile.am: Remove AUTOMAKE_OPTIONS.
55        * lib/Makefile.am: Remove AUTOMAKE_OPTIONS.
56        * libc/Makefile.am: Remove AUTOMAKE_OPTIONS.
57        * machine/Makefile.am: Remove AUTOMAKE_OPTIONS.
58        * net/Makefile.am: Remove AUTOMAKE_OPTIONS.
59        * netinet/Makefile.am: Remove AUTOMAKE_OPTIONS.
60        * nfs/Makefile.am: Remove AUTOMAKE_OPTIONS.
61        * pppd/Makefile.am: Remove AUTOMAKE_OPTIONS.
62        * rtems/Makefile.am: Remove AUTOMAKE_OPTIONS.
63        * rtems_servers/Makefile.am: Remove AUTOMAKE_OPTIONS.
64        * rtems_telnetd/Makefile.am: Remove AUTOMAKE_OPTIONS.
65        * rtems_webserver/Makefile.am: Remove AUTOMAKE_OPTIONS.
66        * sys/Makefile.am: Remove AUTOMAKE_OPTIONS.
67        * vm/Makefile.am: Remove AUTOMAKE_OPTIONS.
68        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
69
[9b02fa65]702002-03-27      Thomas.Doerfler@imd-systems.de
71
72        * PR144
73        * nfs/bootp_subr.c bootpc_init(): Performs a write to memory address
74        0 when called for the first time. This is done when trying to clear
75        the variable "dhcp_hostname".
76
[f4c118d]772002-03-27      Ilya Alexeev <ilya@continuum.ru>
78
79        * PR162
80        * net/if_ppp.c ppp_txdaemon(), net/if_pppvar.h pppstart(): Local
81        variables must not be used in a device write routines.  Now
82        ppp_softc structure have own character for writing to device
83        (sc_outchar).  I think that converting local variables to static
84        is not a right solution, because problems will occur in the case
85        of two or more ppp instances.
86        * net/ppp_tty.c pppstart(): Type of the ioffset variable must be
87        u_long, otherwise in the case of the big output packet endless
88        loop may occur.
89
[fd55b7d]902002-03-21      Ilya Alexeev <ilya@continuum.ru>
91
92        * net/if_ppp.c, net/ppp_tty.c: Initial preparations for multiple
93        PPPD connections.
94
[d7478774]952001-03-20      Till Straumann <strauman@SLAC.Stanford.EDU>
96
97        * PR158
98        * libc/rcmd.c, libc/rcmd.c: Enable the rcmd() library call by
99        commenting out the parts that deal with signals.  This enables
100        RTEMS to 'rsh' command to a server connecting fd to remote stdio.
101        The 'server-side' parts of this file which deal with authentication
102        are disabled since they are not needed.
103
[cb1e8a46]1042002-02-27      Ilya Alexeev <ilya@continuum.ru>
105
106        * net/if_ppp.c, pppd/auth.c, pppd/chat.c, pppd/pppd.h,
107        pppd/sys-rtems.c: Add server with pap-authorization
108        capabilities as well as eliminate some warnings.
109
[c52f1c7]1102002-02-27      Eric Norum <eric.norum@usask.ca>
111
112        * net/radix.c: Properly handle fetching the default route when there
113        is no route.  This was a bug in the original FreeBSD code and this
114        fix is from an updated version of their code.
115
[25b4446]1162002-02-01      Mike Siers <mikes@poliac.com>
[8e3caa5]117
118        * pppd/rtemspppd.c (rtems_pppd_disconnect): Modified to avoid bringing
119        the link down too fast.
120        NOTE: Mike reports successfully running at 56K baud on a direct link.
121
[25b4446]1222002-01-31      Mike Siers <mikes@poliac.com>
[485ed5cc]123
124        * pppd/rtemsdialer.h: New file missed in previous commit.
125
[25b4446]1262002-01-31      Mike Siers <mikes@poliac.com>
[0286b9f]127
128        * Nice Update of PPPD support which eliminates the
129        requiremetn that drivers be in the termios TASK_DRIVEN mode.
130        Mike did significant testing and reports that it seems to be
131        more stable and handle larger packets better.  This patch
132        replaces the termios tasks with more general pppd network
133        driver tasks.  The functions pppinput() and pppstart() get
134        called from the interrupt service routine.
135        * Makefile.am, configure.ac, net/Makefile.am, net/bpf.h,
136        net/ethernet.h, net/if.c, net/if.h, net/if_arp.h, net/if_dl.h,
137        net/if_ethersubr.c, net/if_llc.h, net/if_loop.c, net/if_ppp.h,
138        net/if_pppvar.h, net/if_types.h, net/netisr.h, net/ppp-comp.h,
139        net/ppp_defs.h, net/pppcompress.h, net/radix.c, net/radix.h,
140        net/raw_cb.c, net/raw_cb.h, net/raw_usrreq.c, net/route.c,
141        net/route.h, net/rtsock.c, pppd/Makefile.am, pppd/README,
142        pppd/STATUS, pppd/auth.c, pppd/cbcp.c, pppd/ccp.c, pppd/ccp.h,
143        pppd/chap.c, pppd/chap.h, pppd/chap_ms.c, pppd/chap_ms.h,
144        pppd/chat.c, pppd/demand.c, pppd/fsm.c, pppd/fsm.h, pppd/ipcp.c,
145        pppd/ipcp.h, pppd/ipxcp.c, pppd/ipxcp.h, pppd/lcp.c, pppd/lcp.h,
146        pppd/magic.c, pppd/magic.h, pppd/options.c, pppd/patchlevel.h,
147        pppd/pathnames.h, pppd/pppd.8, pppd/pppd.h, pppd/rtemsmain.c,
148        pppd/rtemspppd.c, pppd/rtemspppd.h, pppd/sys-rtems.c, pppd/upap.c,
149        pppd/upap.h, pppd/utils.c, pppd/example/README,
150        pppd/example/netconfig.h, wrapup/Makefile.am: Modified.
151        * net/bsd-comp.c, net/if_ppp.c, net/ppp-deflate.c, net/ppp.h,
152        net/ppp_tty.c, net/pppcompress.c, net/zlib.c, net/zlib.h: New file.
153        * modem/, modem/.cvsignore, modem/Makefile.am, modem/ppp.c,
154        modem/ppp.h, modem/ppp_tty.c, modem/pppcompress.c: Subdirectory removed.
155
[c8f05db]1562002-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
157
158        * rtems_telnetd/pty.c: Move config.h to were it belongs.
159        Remove printf (Reported by Till Straumann
160        <strauman@SLAC.Stanford.EDU>).
161
[25b4446]1622002-02-16      Eric Norum <eric.norum@usask.ca>
[cf42e735]163
164        * lib/tftpDriver.clib/tftpDriver.c: Fix TFTP block number checking.
165
[ab1ed86]1662002-02-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
167
168        * pppd/sys-rtems.c: Remove unused variable status from
169        dodefaultroute.
170
[d4651e4]1712002-02-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
172
173        * lib/tftpDriver.c: Remove set_errno_and_return_minus_one, include
174        <rtems/seterr.h>.
175
176
[2539cdc]1772001-12-18      Eric Norum <eric.norum@usask.ca>
178
179        * lib/tftpDriver.c: Allow chdir() to work on TFTP `directories'
180        (path names with a / at the end) while disallowing open() operations
181        on TFTP `directories'.
182
[86d9ca2]1832001-12-07      Eric Norum <eric.norum@usask.ca>
184
185        * lib/tftpDriver.c: Restore write capability.
186
[4efd0f66]1872001-11-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
188
189        * arpa/Makefile.am: Remove stray lines.
190
[dfe5a4e3]1912001-10-18      Eric Norum <eric.norum@usask.ca>
192
193        * lib/tftpDriver.c: Properly handles ../ components in chdir() and
194        open() operations within the TFTP file system.
195
[aee474b]1962001-10-12      Mike Siers <mikes@poliac.com>
197
198        * Update to stable working state.  Congratulations Mike! :)
199        * modem_example: Directory removed.
200        * modem_example/16550.h, modem_example/README, modem_example/modem.c,
201        modem_example/modem.h, modem_example/ppp.c, modem_example/ppp.h,
202        modem_example/pppcompress.c: Files removed.
203        * pppd/example/pppd.options: New file.
204        * pppd/README, pppd/STATUS, pppd/cbcp.c, pppd/cbcp.h, pppd/chat.c,
205        pppd/pppd.h, pppd/rtemsmain.c: Updated.
206
[df25c998]2072001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
208
209        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
210        * configure.in: Remove.
211        * configure.ac: New file, generated from configure.in by autoupdate.
212
[1ef8e3d4]2132001-09-27      Eric Norum <eric.norum@usask.ca>
214
215        * lib/tftpDriver.c: Add limited chdir() support to the TFTP
216        filesystem.
217
[b68e01c5]2182001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
219
220        * machine/Makefile.am: Use 'PREINSTALL_FILES ='.
221        * net/Makefile.am: Use 'PREINSTALL_FILES ='.
222        * netinet/Makefile.am: Use 'PREINSTALL_FILES ='.
223        * vm/Makefile.am: Use 'PREINSTALL_FILES ='.
224        * pppd/Makefile.am: Use 'PREINSTALL_FILES ='.
225        * sys/Makefile.am: Use 'PREINSTALL_FILES ='.
226        * rtems_servers/Makefile.am: Use 'PREINSTALL_FILES ='.
227        * arpa/Makefile.am: Use 'PREINSTALL_FILES ='.
228        * nfs/Makefile.am: Use 'PREINSTALL_FILES ='.
229        * rtems_webserver/Makefile.am: Use 'PREINSTALL_FILES ='.
230        * rtems/Makefile.am: Use 'PREINSTALL_FILES ='.
231        * rtems_telnetd/Makefile.am: Use 'PREINSTALL_FILES ='.
232
[0d30932]2332001-09-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
234
235        * Makefile.am: Use PREINSTALL_FILES = to make automake-1.5 happy.
236
[5400f07]2372001-09-19      Eric Norum <eric.norum@usask.ca>
238
239        * lib/tftpDriver.c: Add some debugging capability.
240
[4bde2394]2412001-09-19      Chris Johns <ccj@acm.org>
242
243        * nfs/bootp_subr.c, rtems/rtems_bootp.c, rtems/rtems_bsdnet.h,
244        rtems/rtems_bsdnet_internal.h Added support for populating the
245        initial "root" filesystem with information obtained via the DHCP
246        response.
247
[1946544]2482001-08-16      Mike Siers <mikes@poliac.com>
249
250        * pppd/STATUS: Updated by Joel based upon email from Mike.
251        * pppd/cbcp.c, pppd/cbcp.h: Readded files.  These support callback
252        functionality that has not even been compiled under RTEMS yet.
253
[b8575ab]2542001-08-16      Joel Sherrill <joel@OARcorp.com>
255
256        * pppd/example/Makefile: Removed.
257        * pppd/example/Makefile-user: Added was Makefile.  Renamed to
258        avoid bootstrap -c clobbering it.
259
[2f1b930]2602001-08-16      Mike Siers <mikes@poliac.com>
261
262        * Update of PPPD to 2.3.11 from 2.3.5 and addition of an example
263        application.  Mike's notes on the modifications:
264           - renamed error() function because of namespace problems
265           - removed calls to the exit() funciton
266           - removed extra files from the pppd source directory
267           - defined pppd task constant values in rtemspppd.h
268           - modifyied example code to get actual tick per second value
269           - placed the pppd 2.3.11 man page file (pppd.8) into the pppd
270           directory
271        * pppd/cbcp.c, pppd/cbcp.h, pppd/main.c, pppd/ppp_tty.c,
272        pppd/pppmain.c, pppd/rtems-ppp.c, pppd/rtems-ppp.c: Deleted.
273        * pppd/pppd.8, pppd/rtemsmain.c, pppd/rtemspppd.c, pppd/rtemspppd.h,
274        pppd/sys-rtems.c, pppd/utils.c, pppd/example/Makefile,
275        pppd/example/README, pppd/example/init.c, pppd/example/netconfig.h,
276        pppd/example/ppp.conf, pppd/example/pppdapp.c, pppd/example/system.h:
277        New files.
278        * modem/ppp_tty.c, net/if_ppp.h, pppd/Makefile.am, pppd/README,
279        pppd/STATUS, pppd/auth.c, pppd/ccp.c, pppd/ccp.h, pppd/chap.c,
280        pppd/chap.h, pppd/chap_ms.c, pppd/chap_ms.h, pppd/chat.c,
281        pppd/demand.c, pppd/fsm.c, pppd/fsm.h, pppd/ipcp.c, pppd/ipcp.h,
282        pppd/ipxcp.c, pppd/ipxcp.h, pppd/lcp.c, pppd/lcp.h, pppd/magic.c,
283        pppd/magic.h, pppd/options.c, pppd/patchlevel.h,
284        pppd/pathnames.h, pppd/pppd.h, pppd/upap.c, pppd/upap.h: Modified.
285
[bfe5d15]2862001-08-16      Joel Sherrill <joel@OARcorp.com>
287
288        * rtems_telnetd/.cvsignore: New file.
289
[bd520203]2902001-08-09      Fernando-Ruiz Casas <correo@fernando-ruiz.com>
291
292        * Makefile.am, configure.in, rtems_servers/Makefile.am,
293        rtems_servers/telnetd.c, rtems_servers/telnetd.h,
294        rtems_telnetd/Makefile.am, rtems_telnetd/README, rtems_telnetd/icmds.c,
295        rtems_telnetd/pty.c, rtems_telnetd/pty.h, rtems_telnetd/telnetd.c,
296        rtems_telnetd/telnetd.h, wrapup/Makefile.am:
297          - pty and telnetd have a new subdir rtems_telnetd to avoid
298            the side effect when ftpd change.
299          - the tcp/ip stats have been implemented into icmds.c and
300            started when telnetd daemon is started.
301        * rtems_servers/telnetd.c, rtems_servers/telnetd.h: Removed.
302        * rtems_telnetd: New directory.
303        * rtems_telnetd/Makefile.am, rtems_telnetd/README,
304        rtems_telnetd/icmds.c, rtems_telnetd/pty.c, rtems_telnetd/pty.h,
305        rtems_telnetd/telnetd.c, rtems_telnetd/telnetd.h: New files.
306
[1a7ea60]3072001-05-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
308
309        * rtems_servers/Makefile.am: Deleted blank lines.
310
[451198be]3112001-06-14      Joel Sherrill <joel@OARcorp.com>
312
313        * rtems_servers/telnetd.c, shell/telnetd.h: Moved from libmisc/shell
314        so the network stack to address network depenendency.
315        * rtems_servers/Makefile.am: Modified to reflect above.
316
[d85594d]3172001-05-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
318
319        * libc/Makefile.am: Remove -D__STRICT_ANSI__.
320
3212001-04-24      Eric Norum <eric.norum@usask.ca>
[126405d9]322
323        * lib/rtems_bsdnet_ntp.c: Modifications to make the RTEMS NTP
324        synchronization a little more robust -- no NTP daemon yet, but
325        at least it trys a little harder when the primary NTP server is down.
326
[6fa6367]3272001-04-20  Radzislaw Galler  <rgaller@et.put.poznan.pl>
328
329        * modem/ppp.c, pppd/main.c, pppd/pppmain.c, pppd/rtems-ppp.c,
330        pppd/modem_example/modem.c, pppd/modem_example/ppp.c: Translated
331        Polish comments and other strings into English
332        * pppd/STATUS: updated to reflect the changes
333
[a8c33268]3342001-04-20      Jake Janovetz <janovetz@uiuc.edu>
335
336        * rtems_servers/ftpd.c: Correct argument so hooks work again.
337
[6fa6367]3382001-03-15      Ralf Corsepius <corsepius@faw.uni-ulm.de>
[a2cc545e]339
[d85594d]340        * include/.cvsignore: Remove dangling file.
[a2cc545e]341
[07fbfced]3422001-01-31        Sergei Organov <osv@javad.ru>
343
344        * rtems_servers/ftp.d: Following changes:
345          - Hacks with current dir and root dir removed in favor of new libio
346            support for task-local current and root directories.
347          - Bug in `close_data_socket()' introduced by previous change fixed.
348          - `command_pasv()' changed to set timeout on socket we are listening
349            on and code fixed to don't close socket twice on error.
350          - `serr()' changed to clear `errno'.
351          - `data_socket()' changed to clear `errno' before `bind()'.
352          - `session()' changed to clear `errno' before processing session.
353          - `close_data_socket()' fixed to close both active and passive sockets
354          - Initialize info->data_socket to -1 in `daemon()'
355          - Initialize `fname' to empty string  in `exec_command()'
356
[e6d8fe47]3572001-02-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
358
359        * Makefile.am, arpa/Makefile.am, machine/Makefile.am, net/Makefile.am,
360        netinet/Makefile.am, nfs/Makefile.am, rtems/Makefile.am,
361        rtems_servers/Makefile.am, rtems_webserver/Makefile.am,
362        sys/Makefile.am, vm/Makefile.am:
363        Apply include_*HEADERS instead of H_FILES.
364        * include/Makefile.am: Remove.
365        * Makefile.am: Add handling of *.h files.
366        * configure.in: Remove include/Makefile.
367
[809feccc]3682001-01-25      Eric Norum <eric.norum@usask.ca>
369
370        * lib/tftpDriver.c: Reduce first timeout interval.  This
371        improves throughput on systems which are dropping packets. 
372        Only the first timeout is reduced.  This keeps the number
373        of extra packets down on networks that are very busy and
374        dropping lots of packets.
375
[38371dbe]3762001-01-24      Sergei Organov <osv@javad.ru>
377
378        * rtems_servers/ftpd.c, rtems_servers/ftpd.h: Major enhancements
379        as listed below:
380          - Timeouts on sockets implemented. 'idle' field added to
381            configuration. No timeout by default to keep backward compatibility.
382            Note: SITE IDLE command not implemented yet.
383          - Basic global access control implemented. 'access' field added to
384            configuration. No access limitations by default to keep backward
385            compatibility.
386          - Anchor data socket for active mode (using self IP and port 20.)
387          - Fixed default data port support (still not tested).
388          - Don't allow IP address different from originating host in
389            PORT command to improve security.
390          - Fixed bug in MDTM command.
391          - Check for correctness of parsing of argument in command_port().
392          - Fixed squeeze_path() to don't allow names like 'NAME/smth' where
393            'NAME' is not a directory.
394          - Command parsing a little bit improved: command names are now
395            converted to upper-case to be more compatible with RFC (command
396            names are not case-sensitive.)
397          - Reformat comments so that they have RTEMS look-and-feel.
398          - Fixed DELE, SITE CHMOD, RMD, MKD broken by previous changes
399          - True ASCII mode implemented (doesn't work for hooks and /dev/null)
400          - Passive mode implemented, PASV command added.
401          - Default port for data connection could be used (untested, can't find
402            ftp client that doesn't send PORT command)
403          - SYST reply changed to UNIX, as former RTEMS isn't registered name.
404          - Reply codes reviewed and fixed.
405
[3f777d0e]4062001-01-12      Sergei Organov <osv@javad.ru>
407
408        * rtems_servers/ftpd.c, rtems_servers/ftpd.h: Major enhancements
409        as listed below:
410            - use pool of pre-created threads to handle sessions instead of
411              creating/deleting threads on the fly
412            - LIST output is now similar to what "/bin/ls -al" would output,
413              thus FTP clients such Netscape are happy with it.
414            - LIST NAME now works (both for files and directories)
415            - added support for NLST, CDUP, and MDTM FTP commands to make
416              more FTP clients happy
417            - keep track of CWD for every session separately
418            - ability to specify root directory name for FTPD in configuration
419              table. FTPD will then create illusion for FTP clients that this
420              is actually root directory.
421            - ignore options sent in commands, thus LIST -al FILE works and
422              doesn't try to list "-al" directory.
423            - buffers are allocated on stack instead of heap where possible to
424              eliminate malloc/free calls (avoid possible heap fragmentation
425              troubles).
426            - drop using of task notepad to pass parameters - use function
427              arguments instead
428            - use snprintf() instead of sprintf() as the latter is unsafe
429            - use of PF_INET in socket() instead of AF_INET
430
431            Here are ftp clients I've tried new FTPD with (all of them
432            running on Debian GNU/Linux 2.2):
433
434                 Lftp 2.1.10
435                 NcFTP 2.4.3
436                 Netscape 4.75
437                 ftp
438                 mc 4.5.49
439
[75ca179]4402001-01-02      Joel Sherrill <joel@OARcorp.com>
441
442        * CHANGELOG: Removed.
443        * README: Merged CHANGELOG contents as initial changes.
444
[407bc8c]4452000-12-14      Eric Norum <eric.norum@usask.ca>
446
447        * lib/tftpDriver.c: Added write capability.
448
[78d6a50]4492000-12-08      Joel Sherrill <joel@OARcorp.com>
450
451        * libc/linkaddr.c: Initialized variable to remove warning.
452        * modem/ppp.c, modem/ppp_tty.c: Made numerous variable declarations
453        conditional on PPP_COMPRESS and PPP_FILTER.  Commented out variables
454        that were not used because the code using them was commented out.
455        Removed totally unused variables.
456        * modem/pppcompress.c: Added parentheses to avoid warnings.
457        * pppd/pppmain.c: Removed numerous warnings.
458
[1a94770a]4592000-11-30      Joel Sherrill <joel@OARcorp.com>
460
461        * modem/ppp_tty.c: Changed to include <rtems/termiostypes.h> since
462        that is an RTEMS specific header file.
463
[a58638b]4642000-11-30      Joel Sherrill <joel@OARcorp.com>
465
466        * sys/ttycom.h: Moved to lib/include/sys.
467        * Makefile.am: Modified to reflect above.
468
[bcefea16]4692000-11-27      Joel Sherrill <joel@OARcorp.com>
470
471        * libc/res_init.c: Fix typo - adding missing # on include.
472
[f0864664]4732000-11-25      Eric Norum <eric.norum@usask.ca>
474
475        * libc/res_init.c: Move include to avoid compiler dumping core.
476
[a6abd67]4772000-11-25  Antti P Miettinen  <antti.p.miettinen@nokia.com>
478
479        * wrapup/Makefile.am: Added modem subdir.
480        * configure.in, Makefile.am: Added modem subdir.
481        * net/Makefile.am: Added if_pppvar.h, pppcompress.h.
482        * pppd/Makefile.am: Added pppmain.c (which needs work).
483        * pppd/chat.c, pppd/fsm.c, pppd/fsm.h, pppd/ipxcp.c, pppd/main.c,
484        pppd/ppp_tty.c, pppd/upap.c: Changes from Thomas Doerfler
485        <Thomas.Doerfler@imd-systems.de> and cosmetic changes by me.
486        Actually main.c and ppp_tty.c should be scratched. The modem
487        subdir has the real ppp_tty.c and the real pppd main is in pppmain.c.
488
[feead226]4892000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
490
491        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
492
[a314d3b4]4932000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
494
495        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
496
[3e59793]4972000-10-30      Joel Sherrill <joel@OARcorp.com>
498
499        * POSIX include files merged into newlib.  This resulted in
500        some definitions moving to other files and thus some secondary
501        effects in RTEMS source code.
502        * machine/types.h: Added _CLOCKID_T_ and _TIMER_T_ to be in sync
503        with newlib's <machine/types.h>.
504        * rtems/rtems_bsdnet_internal.h: newlib now includes definition
505        of struct itimerval in <sys/time.h>.
506
[f36718c]5072000-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
508
509        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
510        Switch to GNU canonicalization.
511
[0da0dea]5122000-10-19  Antti P Miettinen  <anmietti@trshp.ntc.nokia.com>
513
514        * lib/tftpDriver.c: add comments to handlers struct function pointers.
515        * rtems/rtems_glue.c: move pointer arithmetic to be _after_
516        pointer has been checked against NULL.
517
[552051f]5182000-10-18       Chris Johns <ccj@acm.org>
519
520        * pppd/ipxcp.c: Fixed a typo.
521
[5ff9c088]5222000-09-28      Joel Sherrill <joel@OARcorp.com>
523
524        * rtems_webserver/Makefile.am, rtems_webserver/base64.c,
525        rtems_webserver/base64.c: Renamed base64.c to wbase64.c.
526        * rtems_webserver/sock.c: Added file missed in merger.
527
[4b60bd3]5282000-09-22      Joel Sherrill <joel@OARcorp.com>
529
530        * machine/types.h, pppd/pppd.h, rtems/rtems_bsdnet_internal.h,
531        rtems_webserver/webmain.c: machine/types.h  should not have
532        included rtems.h.  It is now including precisely the
533        least amount of low level, yet portable .h files to get
534        the basic RTEMS types defined.  This rippled into other
535        files since rtems_bsdnet_internal.h used machine/types.h to include
536        rtems.h.
537
[6e3f4b2]5382000-09-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
[9b28bea5]539
[6e3f4b2]540        * ChangeLog: Cleanup.
[9b28bea5]541
[bdcf02d4]5422000-09-05      Joel Sherrill <joel@OARcorp.com>
543
544        * rtems/rtems_syscall.c: Changed from O_NONBLOCK to internal
545        RTEMS_LIBIO_FLAGS_NO_DELAY to avoid O_NONBLOCK/O_NDELAY confusion
546        and to work with the converted flags.
547
[6e3f4b2]5482000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
549
550        * kern/Makefile.am, lib/Makefile.am, libc/Makefile.am,
551        net/Makefile.am, netinet/Makefile.am, nfs/Makefile.am,
552        pppd/Makefile.am, rtems/Makefile.am, rtems_servers/Makefile.am,
553        rtems_webserver/Makefile.am, wrapup/Makefile.am: Include compile.am
554
[5f117e8]5552000-09-01      Rosimildo daSilva <rdasilva@connecttel.com>
556
557        * emfdb.c: Removed stray semi-colon.  Reported on GoAhead
558        mailing lists by Jim Rudnicki <jdrudnicki@yahoo.com>
559
[a6b4c0df]5602000-08-31      Joel Sherrill <joel@OARcorp.com>
561
562        * Merged version 2.1 of GoAhead webserver.  This update
563        was submitted by Antti P Miettinen <antti.p.miettinen@nokia.com>.
564        * NOTES, base64.c, ejIntrn.h, emfdb.c, emfdb.h, md5.h, md5c.c,
565        um.c, um.h: New files.
566        * wbase64.c: Removed.
567        * Makefile.am, asp.c, balloc.c, default.c, ej.h, ejlex.c, ejparse.c,
568        form.c, h.c, handler.c, mime.c, misc.c, ringq.c, rom.c, security.c,
569        socket.c, sym.c, uemf.c, uemf.h, url.c, value.c, webcomp.c, webmain.c,
570        webpage.c, webrom.c, webs.c, webs.h, websuemf.c, wsIntrn.h: Modified.
571
[757e1661]5722000-08-31      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
573
574        * netinet/tcp_input.c: Spelling corrections.
575
[82edf48]5762000-08-30      Joel Sherrill <joel@OARcorp.com>
577
578        * rtems_webserver/license.txt: New file.
579
[e94ad1fe]5802000-08-10      Joel Sherrill <joel@OARcorp.com>
581
582        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.