source: rtems/cpukit/libnetworking/ChangeLog @ 2d3c472b

4.104.114.84.95
Last change on this file since 2d3c472b was 658ad56f, checked in by Chris Johns <chrisj@…>, on 11/10/02 at 07:12:46

2002-11-06 Chris Johns <ccj@…>

  • sys/select.h: Add C++ to C external.
  • Property mode set to 100644
File size: 31.0 KB
Line 
12002-11-06      Chris Johns <ccj@acm.org>
2
3        * sys/select.h: Add C++ to C external.
4
52002-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
6
7        * kern/uipc_mbuf.c: Comment out m0 in m_copydata to suppress
8        warning.
9
102002-11-01      Joel Sherrill <joel@OARcorp.com>
11
12        * ChangeLog: Corrected.
13
142002-11-01      Eric Norum <eric.norum@usask.ca>
15
16        * nfs/bootp_subr.c, rtems/rtems_bsdnet.h, rtems/rtems_glue.c:
17        Till Straumann's patch (PR295) to use bootp option 129 to get
18        command line string.  Till Straumann's patch to change
19        inet_ntoa->inet_ntop.
20
212002-10-31      Joel Sherrill <joel@OARcorp.com>
22
23        * libc/rcmd.c, netinet/in_cksum_arm.c: Removed warnings.
24
252002-10-28      Joel Sherrill <joel@OARcorp.com>
26
27        * Pass to eliminate warnings.
28        * kern/uipc_mbuf.c: Conditional SYSINIT() usage on __rtems__.
29        Fix return statement without a value.
30        * lib/ftpfs.c: read and write filesystem routines return ssize_t.
31        * lib/syslog.c: Add include of <string.h> to eliminate warning.
32        * lib/tftpDriver.c: read and write filesystem routines return ssize_t.
33        * libc/gethostbydns.c: Prototype abort().
34        * libc/inet_ntoa.c: Prototype strcpy().
35        * libc/rcmd.c: Add include of <sys/select.h>
36        * net/if_loop.c: Turn token at end of endif to comment.
37        * net/rtsock.c, nfs/bootp_subr.c:  Conditional SYSINIT() usage
38        on __rtems__.
39        * rtems/rtems_bootp.c: Add include of <rtems/rtems_bsdnet_internal.h>.
40        * rtems/rtems_bsdnet_internal.h: Added prototypes for memcpy() and
41        memset() since the BSD code tries to avoid using libc .h files
42        since it is used to being in the kernel.
43        * rtems/rtems_syscall.c: read and write filesystem routines
44        return ssize_t.
45
462002-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
47
48        * configure.ac: Add nostdinc to AM_INIT_AUTOMAKE.
49
502002-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
51
52        * Makefile.am: Remove bogus reference to CHANGELOG.
53
542002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
55
56        * .cvsignore: Reformat.
57        Add autom4te*cache.
58        Remove autom4te.cache.
59
602002-10-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
61
62        * net/if_ethersubr.c: Add comments to #endif NETATALK to stop
63        gcc from complaining.
64
652002-10-07      Eric Norum <eric.norum@usask.ca>
66
67        * netinet/tcp_var.h: Corrected typo in ARM alignment patch which
68        broke all other ports.
69
702002-10-04      Jay Monkman <jtm@smoothsmoothie.com>
71
72        * netinet/in_cksum.c, netinet/ip_icmp.h, netinet/ip_input.c,
73        netinet/tcp_input.c, netinet/tcp_subr.c, netinet/tcp_var.h,
74        sys/queue.h: Address alignment requirements for the ARM.
75
762002-10-04      Jay Monkman <jtm@smoothsmoothie.com>
77
78        * rtems/rtems_glue.c: Add IP aliasing ioctls SIOCAIFADDR and
79        SIOCDIFADDR.
80
812002-10-02      Joel Sherrill <joel@OARcorp.com>
82
83        * kern/uipc_socket.c: Make sure that small non-zero delays work.
84        Suggested cleanup from Eric Norum.
85
862002-10-02      Eric Norum <eric.norum@usask.ca>
87
88        * rtems/mkrootfs.c: As part of PR283, remove redundant code that
89        creates /etc/passwd and /etc/group.
90
912002-09-16      Joel Sherrill <joel@OARcorp.com>
92
93        * netinet/Makefile.am, netinet/udp_usrreq.c: Back off some of
94        the IP_FORWARD patch as it appears to not compile in the
95        current tree.
96
972002-09-14      Joel Sherrill <joel@OARcorp.com>
98
99        * kern/uipc_socket.c: Fix case on SO_RCVTIMEO and SO_SNDTIMEO where
100        conversion into ticks can result in a 0 ticks timeout which is
101        the same as requesting no timeout.  Reported by Sergei Organov
102        <osv@javad.ru>.
103
1042002-09-14      Vyacheslav V. Burdjanadze <wr@zelax.ru>
105
106        * kern/uipc_mbuf.c, sys/mbuf.h, netinet/udp_usrreq.c: Add
107        optional UDP broadcast forwarding support.
108        * netinet/Makefile.am: Defined FORWARD_PROTOCOL to enabled UDP
109        broadcast forwarding.
110
1112002-09-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
112
113        * netinet/in_cksum.c: #include <string.h> for puts in generic
114        routines.
115
1162002-08-20      Eric Norum <eric.norum@usask.ca>
117
118        * rtems/rtems_glue.c: Per PR270, the BSD network code expects that
119        the value of the number of seconds since boot is non-zero.  The
120        RTEMS network initialization code assures this by waiting for a
121        second.  A more efficient technique is to simply wait until the
122        number of seconds since boot is non-zero.
123
1242002-08-09      Joel Sherrill <joel@OARcorp.com>
125
126        * libc/getservent.c: Per PR265, add  #include <netinet/in.h> for
127        ntohl() function.
128
1292002-08-07      Joel Sherrill <joel@OARcorp.com>
130
131        * netinet/in.h: Per PR263, added include of <machine/endian.h>
132        to <netinet/in.h> so it includes prototypes of ntohl() family
133        of routines.
134
1352002-08-01      Joel Sherrill <joel@OARcorp.com>
136
137        * machine/param.h, sys/syslimits.h: In the continued effort to
138        eliminate .h conflicts between newlib and RTEMS, these were moved to
139        newlib.
140        * machine/Makefile.am, sys/Makefile.am: Reflect above.
141
1422002-08-01      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
143
144        * wrapup/Makefile.am: Don't install.
145
1462002-07-30      Joel Sherrill <joel@OARcorp.com>
147
148        * sys/param.h: Removed as a simpler version of this file is
149        now part of the RTEMS newlib support.
150        * sys/Makefile.am: Modified to reflect above. 
151
1522002-07-30      Joel Sherrill <joel@OARcorp.com>
153
154        * machine/types.h: Removed as a simpler version of this file is
155        now part of the RTEMS newlib support.
156        * machine/Makefile.am, machine/endian.h, nfs/bootp_subr.c,
157        rtems/rtems_bsdnet_internal.h, sys/Makefile.am, sys/systm.h:
158        Minor modifications to use the simpler machine/types.h.  Mostly
159        more complete sets of #include's to account for machine/types.h
160        no longer doing this.
161
1622002-07-30      Jay Monkman <jtm@smoothsmoothie.com>
163
164        * netinet/in_cksum.c, netinet/in_cksum_arm.c: Added ARM in_cksum
165        support.
166
1672002-07-24      Joel Sherrill <joel@OARcorp.com>
168
169        * sys/select.h: Add a prototype of select() to avoid warnings.
170        In particular a C++ application using select() required a prototype.
171
1722002-07-24      Joel Sherrill <joel@OARcorp.com>
173
174        * Makefile.am, libc/res_send.c: Do not install or use <poll.h>
175        since RTEMS does not support it.
176
1772002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
178
179        * kern/Makefile.am: Use .$(OBJEXT) instead of .o.
180        * lib/Makefile.am: Ditto.
181        * libc/Makefile.am: Ditto.
182        * net/Makefile.am: Ditto.
183        * netinet/Makefile.am: Ditto.
184        * nfs/Makefile.am: Ditto.
185        * rtems/Makefile.am: Ditto.
186        * wrapup/Makefile.am: Ditto.
187
1882002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
189
190        * kern/Makefile.am: Eliminate LIBNAME.
191        * lib/Makefile.am: Ditto.
192        * libc/Makefile.am: Ditto.
193        * net/Makefile.am: Ditto.
194        * netinet/Makefile.am: Ditto.
195        * nfs/Makefile.am: Ditto.
196        * rtems/Makefile.am: Ditto.
197        * wrapup/Makefile.am: Use project_libdir instead of
198        $(PROJECT_RELEASE)/lib.
199
2002002-07-17      Jay Monkman <jtm@smoothsmoothie.com>
201
202        * netinet/in.h, netinet/ip.h, netinet/ip_var.h, netinet/tcp.h:
203        Modified to added packed attribute.o
204
2052002-07-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
206
207        * configure.ac: RTEMS_TOP(../..).
208
2092002-07-01      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
210
211        * configure.ac: Remove RTEMS_PROJECT_ROOT.
212
2132002-06-27      Thomas Doerfler <Thomas.Doerfler@imd-systems.de>
214
215        * Addition of a ftp client filesystem, comparable to the tftp one.
216        * lib/ftpfs.c, rtems/ftpfs.h: New files.
217        * lib/Makefile.am, rtems/Makefile.am: Modified to reflect above.
218
2192002-06-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
220
221        * configure.ac: Use AC_CONFIG_AUX_DIR(../..).
222        Add AC_PROG_RANLIB.
223
2242002-06-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
225
226        * wrapup/Makefile.am: Don't preinstall libnetworking.a.
227
2282002-06-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
229
230        * Makefile.am: Remove commented out net-apps.
231
2322002-06-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
233
234        * arpa/Makefile.am: Include $(top_srcdir)/../automake/*.am.
235        * kern/Makefile.am: Include $(top_srcdir)/../automake/*.am.
236        * Makefile.am: Include $(top_srcdir)/../automake/*.am.
237        Use ../aclocal.
238        * lib/Makefile.am: Include $(top_srcdir)/../automake/*.am.
239        * libc/Makefile.am: Include $(top_srcdir)/../automake/*.am.
240        * machine/Makefile.am: Include $(top_srcdir)/../automake/*.am.
241        * net/Makefile.am: Include $(top_srcdir)/../automake/*.am.
242        * netinet/Makefile.am: Include $(top_srcdir)/../automake/*.am.
243        * nfs/Makefile.am: Include $(top_srcdir)/../automake/*.am.
244        * rtems/Makefile.am: Include $(top_srcdir)/../automake/*.am.
245        * sys/Makefile.am: Include $(top_srcdir)/../automake/*.am.
246        * vm/Makefile.am: Include $(top_srcdir)/../automake/*.am.
247        * wrapup/Makefile.am: Include $(top_srcdir)/../automake/*.am.
248
2492002-06-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
250
251        * rtems/Makefile.am: include multilib.am instead of RTEMS_BSP.cfg.
252
2532002-05-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
254
255        * configure.ac: Remove RTEMS_CHECK_POSIX_API.
256          Remove RTEMS_ENABLE_POSIX.
257          Remove RTEMS_CHECK_CUSTOM_BSP.
258          Remove RTEMS_ENABLE_POSIX.
259
2602002-05-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
261
262        Relocate c/src/libnetworking.
263        * Makefile.am: Reflect moval.
264        * machine/Makefile.am: Ditto.
265        * net/Makefile.am: Ditto.
266        * lib/Makefile.am: Ditto.
267        * netinet/Makefile.am: Ditto.
268        * vm/Makefile.am: Ditto.
269        * libc/Makefile.am: Ditto.
270        * sys/Makefile.am: Ditto.
271        * arpa/Makefile.am: Ditto.
272        * nfs/Makefile.am: Ditto.
273        * kern/Makefile.am: Ditto.
274        * rtems/Makefile.am: Ditto.
275        * configure.ac: Dittp.
276        * wrapup/Makefile.am: Ditto. Remove references to networking apps.
277
2782002-05-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
279
280        * rtems_telnetd/pty.c: Remove bsp.h. Include <rtems/bspIo.h>.
281
2822002-05-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
283
284        * rtems/mkrootfs.c: Add (relocated from libmisc/rootfs).
285        * rtems/mkrootfs.h: Ditto.
286        * rtems/Makefile.am: Reflect changes above.
287
2882002-05-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
289
290        * sys/ioctl.h: Remove.
291        * sys/sockio.h: Remove.
292        * sys/filio.h: Remove.
293        * sys/Makefile.am: Reflect changes above.
294
2952001-05-14      Joel Sherrill <joel@OARcorp.com>
296
297        * ChangeLog: Corrected -- entry should have been in libchip.
298 
2992002-05-01      Eric Norum <eric.norum@usask.ca>
300
301        * machine/in_cksum.h: Per PR200 fix multi-line inline assembly
302        to satisfy gcc 3.1 and newer.
303
3042002-04-26      Eric Norum <eric.norum@usask.ca>
305
306        * netinet/in_cksum_i386.c: Add volatile so the more agressive
307        optimization in gcc 3.1 does not reorder things.
308
3092002-04-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
310
311        * pppd/utils.c: Adapt to gcc-3.x.
312
3132002-04-11      Chris Johns <ccj@acm.org>
314
315        * c/src/libnetworking/rtems/rtems_bsdnet.h: To address PR59, added
316        the drv_ctrl driver control block field to the ifconfig network driver
317        structure. This field is needed by the i82586 driver which was ported
318        from NetBSD as it had better hardware abstraction.
319
3202002-04-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
321
322        * ChangeLog: Fix dates.
323
3242002-03-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
325
326        * libc/rcmd.c: Replace __rtems w/ __rtems__.
327
3282002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
329
330        * configure.ac:
331        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
332        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
333        * arpa/Makefile.am: Remove AUTOMAKE_OPTIONS.
334        * kern/Makefile.am: Remove AUTOMAKE_OPTIONS.
335        * Makefile.am: Remove AUTOMAKE_OPTIONS.
336        * lib/Makefile.am: Remove AUTOMAKE_OPTIONS.
337        * libc/Makefile.am: Remove AUTOMAKE_OPTIONS.
338        * machine/Makefile.am: Remove AUTOMAKE_OPTIONS.
339        * net/Makefile.am: Remove AUTOMAKE_OPTIONS.
340        * netinet/Makefile.am: Remove AUTOMAKE_OPTIONS.
341        * nfs/Makefile.am: Remove AUTOMAKE_OPTIONS.
342        * pppd/Makefile.am: Remove AUTOMAKE_OPTIONS.
343        * rtems/Makefile.am: Remove AUTOMAKE_OPTIONS.
344        * rtems_servers/Makefile.am: Remove AUTOMAKE_OPTIONS.
345        * rtems_telnetd/Makefile.am: Remove AUTOMAKE_OPTIONS.
346        * rtems_webserver/Makefile.am: Remove AUTOMAKE_OPTIONS.
347        * sys/Makefile.am: Remove AUTOMAKE_OPTIONS.
348        * vm/Makefile.am: Remove AUTOMAKE_OPTIONS.
349        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
350
3512002-03-27      Thomas.Doerfler@imd-systems.de
352
353        * PR144
354        * nfs/bootp_subr.c bootpc_init(): Performs a write to memory address
355        0 when called for the first time. This is done when trying to clear
356        the variable "dhcp_hostname".
357
3582002-03-27      Ilya Alexeev <ilya@continuum.ru>
359
360        * PR162
361        * net/if_ppp.c ppp_txdaemon(), net/if_pppvar.h pppstart(): Local
362        variables must not be used in a device write routines.  Now
363        ppp_softc structure have own character for writing to device
364        (sc_outchar).  I think that converting local variables to static
365        is not a right solution, because problems will occur in the case
366        of two or more ppp instances.
367        * net/ppp_tty.c pppstart(): Type of the ioffset variable must be
368        u_long, otherwise in the case of the big output packet endless
369        loop may occur.
370
3712002-03-21      Ilya Alexeev <ilya@continuum.ru>
372
373        * net/if_ppp.c, net/ppp_tty.c: Initial preparations for multiple
374        PPPD connections.
375
3762001-03-20      Till Straumann <strauman@SLAC.Stanford.EDU>
377
378        * PR158
379        * libc/rcmd.c, libc/rcmd.c: Enable the rcmd() library call by
380        commenting out the parts that deal with signals.  This enables
381        RTEMS to 'rsh' command to a server connecting fd to remote stdio.
382        The 'server-side' parts of this file which deal with authentication
383        are disabled since they are not needed.
384
3852002-02-27      Ilya Alexeev <ilya@continuum.ru>
386
387        * net/if_ppp.c, pppd/auth.c, pppd/chat.c, pppd/pppd.h,
388        pppd/sys-rtems.c: Add server with pap-authorization
389        capabilities as well as eliminate some warnings.
390
3912002-02-27      Eric Norum <eric.norum@usask.ca>
392
393        * net/radix.c: Properly handle fetching the default route when there
394        is no route.  This was a bug in the original FreeBSD code and this
395        fix is from an updated version of their code.
396
3972002-02-01      Mike Siers <mikes@poliac.com>
398
399        * pppd/rtemspppd.c (rtems_pppd_disconnect): Modified to avoid bringing
400        the link down too fast.
401        NOTE: Mike reports successfully running at 56K baud on a direct link.
402
4032002-01-31      Mike Siers <mikes@poliac.com>
404
405        * pppd/rtemsdialer.h: New file missed in previous commit.
406
4072002-01-31      Mike Siers <mikes@poliac.com>
408
409        * Nice Update of PPPD support which eliminates the
410        requiremetn that drivers be in the termios TASK_DRIVEN mode.
411        Mike did significant testing and reports that it seems to be
412        more stable and handle larger packets better.  This patch
413        replaces the termios tasks with more general pppd network
414        driver tasks.  The functions pppinput() and pppstart() get
415        called from the interrupt service routine.
416        * Makefile.am, configure.ac, net/Makefile.am, net/bpf.h,
417        net/ethernet.h, net/if.c, net/if.h, net/if_arp.h, net/if_dl.h,
418        net/if_ethersubr.c, net/if_llc.h, net/if_loop.c, net/if_ppp.h,
419        net/if_pppvar.h, net/if_types.h, net/netisr.h, net/ppp-comp.h,
420        net/ppp_defs.h, net/pppcompress.h, net/radix.c, net/radix.h,
421        net/raw_cb.c, net/raw_cb.h, net/raw_usrreq.c, net/route.c,
422        net/route.h, net/rtsock.c, pppd/Makefile.am, pppd/README,
423        pppd/STATUS, pppd/auth.c, pppd/cbcp.c, pppd/ccp.c, pppd/ccp.h,
424        pppd/chap.c, pppd/chap.h, pppd/chap_ms.c, pppd/chap_ms.h,
425        pppd/chat.c, pppd/demand.c, pppd/fsm.c, pppd/fsm.h, pppd/ipcp.c,
426        pppd/ipcp.h, pppd/ipxcp.c, pppd/ipxcp.h, pppd/lcp.c, pppd/lcp.h,
427        pppd/magic.c, pppd/magic.h, pppd/options.c, pppd/patchlevel.h,
428        pppd/pathnames.h, pppd/pppd.8, pppd/pppd.h, pppd/rtemsmain.c,
429        pppd/rtemspppd.c, pppd/rtemspppd.h, pppd/sys-rtems.c, pppd/upap.c,
430        pppd/upap.h, pppd/utils.c, pppd/example/README,
431        pppd/example/netconfig.h, wrapup/Makefile.am: Modified.
432        * net/bsd-comp.c, net/if_ppp.c, net/ppp-deflate.c, net/ppp.h,
433        net/ppp_tty.c, net/pppcompress.c, net/zlib.c, net/zlib.h: New file.
434        * modem/, modem/.cvsignore, modem/Makefile.am, modem/ppp.c,
435        modem/ppp.h, modem/ppp_tty.c, modem/pppcompress.c: Subdirectory removed.
436
4372002-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
438
439        * rtems_telnetd/pty.c: Move config.h to were it belongs.
440        Remove printf (Reported by Till Straumann
441        <strauman@SLAC.Stanford.EDU>).
442
4432002-02-16      Eric Norum <eric.norum@usask.ca>
444
445        * lib/tftpDriver.clib/tftpDriver.c: Fix TFTP block number checking.
446
4472002-02-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
448
449        * pppd/sys-rtems.c: Remove unused variable status from
450        dodefaultroute.
451
4522002-02-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
453
454        * lib/tftpDriver.c: Remove set_errno_and_return_minus_one, include
455        <rtems/seterr.h>.
456
457
4582001-12-18      Eric Norum <eric.norum@usask.ca>
459
460        * lib/tftpDriver.c: Allow chdir() to work on TFTP `directories'
461        (path names with a / at the end) while disallowing open() operations
462        on TFTP `directories'.
463
4642001-12-07      Eric Norum <eric.norum@usask.ca>
465
466        * lib/tftpDriver.c: Restore write capability.
467
4682001-11-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
469
470        * arpa/Makefile.am: Remove stray lines.
471
4722001-10-18      Eric Norum <eric.norum@usask.ca>
473
474        * lib/tftpDriver.c: Properly handles ../ components in chdir() and
475        open() operations within the TFTP file system.
476
4772001-10-12      Mike Siers <mikes@poliac.com>
478
479        * Update to stable working state.  Congratulations Mike! :)
480        * modem_example: Directory removed.
481        * modem_example/16550.h, modem_example/README, modem_example/modem.c,
482        modem_example/modem.h, modem_example/ppp.c, modem_example/ppp.h,
483        modem_example/pppcompress.c: Files removed.
484        * pppd/example/pppd.options: New file.
485        * pppd/README, pppd/STATUS, pppd/cbcp.c, pppd/cbcp.h, pppd/chat.c,
486        pppd/pppd.h, pppd/rtemsmain.c: Updated.
487
4882001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
489
490        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
491        * configure.in: Remove.
492        * configure.ac: New file, generated from configure.in by autoupdate.
493
4942001-09-27      Eric Norum <eric.norum@usask.ca>
495
496        * lib/tftpDriver.c: Add limited chdir() support to the TFTP
497        filesystem.
498
4992001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
500
501        * machine/Makefile.am: Use 'PREINSTALL_FILES ='.
502        * net/Makefile.am: Use 'PREINSTALL_FILES ='.
503        * netinet/Makefile.am: Use 'PREINSTALL_FILES ='.
504        * vm/Makefile.am: Use 'PREINSTALL_FILES ='.
505        * pppd/Makefile.am: Use 'PREINSTALL_FILES ='.
506        * sys/Makefile.am: Use 'PREINSTALL_FILES ='.
507        * rtems_servers/Makefile.am: Use 'PREINSTALL_FILES ='.
508        * arpa/Makefile.am: Use 'PREINSTALL_FILES ='.
509        * nfs/Makefile.am: Use 'PREINSTALL_FILES ='.
510        * rtems_webserver/Makefile.am: Use 'PREINSTALL_FILES ='.
511        * rtems/Makefile.am: Use 'PREINSTALL_FILES ='.
512        * rtems_telnetd/Makefile.am: Use 'PREINSTALL_FILES ='.
513
5142001-09-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
515
516        * Makefile.am: Use PREINSTALL_FILES = to make automake-1.5 happy.
517
5182001-09-19      Eric Norum <eric.norum@usask.ca>
519
520        * lib/tftpDriver.c: Add some debugging capability.
521
5222001-09-19      Chris Johns <ccj@acm.org>
523
524        * nfs/bootp_subr.c, rtems/rtems_bootp.c, rtems/rtems_bsdnet.h,
525        rtems/rtems_bsdnet_internal.h Added support for populating the
526        initial "root" filesystem with information obtained via the DHCP
527        response.
528
5292001-08-16      Mike Siers <mikes@poliac.com>
530
531        * pppd/STATUS: Updated by Joel based upon email from Mike.
532        * pppd/cbcp.c, pppd/cbcp.h: Readded files.  These support callback
533        functionality that has not even been compiled under RTEMS yet.
534
5352001-08-16      Joel Sherrill <joel@OARcorp.com>
536
537        * pppd/example/Makefile: Removed.
538        * pppd/example/Makefile-user: Added was Makefile.  Renamed to
539        avoid bootstrap -c clobbering it.
540
5412001-08-16      Mike Siers <mikes@poliac.com>
542
543        * Update of PPPD to 2.3.11 from 2.3.5 and addition of an example
544        application.  Mike's notes on the modifications:
545           - renamed error() function because of namespace problems
546           - removed calls to the exit() funciton
547           - removed extra files from the pppd source directory
548           - defined pppd task constant values in rtemspppd.h
549           - modifyied example code to get actual tick per second value
550           - placed the pppd 2.3.11 man page file (pppd.8) into the pppd
551           directory
552        * pppd/cbcp.c, pppd/cbcp.h, pppd/main.c, pppd/ppp_tty.c,
553        pppd/pppmain.c, pppd/rtems-ppp.c, pppd/rtems-ppp.c: Deleted.
554        * pppd/pppd.8, pppd/rtemsmain.c, pppd/rtemspppd.c, pppd/rtemspppd.h,
555        pppd/sys-rtems.c, pppd/utils.c, pppd/example/Makefile,
556        pppd/example/README, pppd/example/init.c, pppd/example/netconfig.h,
557        pppd/example/ppp.conf, pppd/example/pppdapp.c, pppd/example/system.h:
558        New files.
559        * modem/ppp_tty.c, net/if_ppp.h, pppd/Makefile.am, pppd/README,
560        pppd/STATUS, pppd/auth.c, pppd/ccp.c, pppd/ccp.h, pppd/chap.c,
561        pppd/chap.h, pppd/chap_ms.c, pppd/chap_ms.h, pppd/chat.c,
562        pppd/demand.c, pppd/fsm.c, pppd/fsm.h, pppd/ipcp.c, pppd/ipcp.h,
563        pppd/ipxcp.c, pppd/ipxcp.h, pppd/lcp.c, pppd/lcp.h, pppd/magic.c,
564        pppd/magic.h, pppd/options.c, pppd/patchlevel.h,
565        pppd/pathnames.h, pppd/pppd.h, pppd/upap.c, pppd/upap.h: Modified.
566
5672001-08-16      Joel Sherrill <joel@OARcorp.com>
568
569        * rtems_telnetd/.cvsignore: New file.
570
5712001-08-09      Fernando-Ruiz Casas <correo@fernando-ruiz.com>
572
573        * Makefile.am, configure.in, rtems_servers/Makefile.am,
574        rtems_servers/telnetd.c, rtems_servers/telnetd.h,
575        rtems_telnetd/Makefile.am, rtems_telnetd/README, rtems_telnetd/icmds.c,
576        rtems_telnetd/pty.c, rtems_telnetd/pty.h, rtems_telnetd/telnetd.c,
577        rtems_telnetd/telnetd.h, wrapup/Makefile.am:
578          - pty and telnetd have a new subdir rtems_telnetd to avoid
579            the side effect when ftpd change.
580          - the tcp/ip stats have been implemented into icmds.c and
581            started when telnetd daemon is started.
582        * rtems_servers/telnetd.c, rtems_servers/telnetd.h: Removed.
583        * rtems_telnetd: New directory.
584        * rtems_telnetd/Makefile.am, rtems_telnetd/README,
585        rtems_telnetd/icmds.c, rtems_telnetd/pty.c, rtems_telnetd/pty.h,
586        rtems_telnetd/telnetd.c, rtems_telnetd/telnetd.h: New files.
587
5882001-05-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
589
590        * rtems_servers/Makefile.am: Deleted blank lines.
591
5922001-06-14      Joel Sherrill <joel@OARcorp.com>
593
594        * rtems_servers/telnetd.c, shell/telnetd.h: Moved from libmisc/shell
595        so the network stack to address network depenendency.
596        * rtems_servers/Makefile.am: Modified to reflect above.
597
5982001-05-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
599
600        * libc/Makefile.am: Remove -D__STRICT_ANSI__.
601
6022001-04-24      Eric Norum <eric.norum@usask.ca>
603
604        * lib/rtems_bsdnet_ntp.c: Modifications to make the RTEMS NTP
605        synchronization a little more robust -- no NTP daemon yet, but
606        at least it trys a little harder when the primary NTP server is down.
607
6082001-04-20  Radzislaw Galler  <rgaller@et.put.poznan.pl>
609
610        * modem/ppp.c, pppd/main.c, pppd/pppmain.c, pppd/rtems-ppp.c,
611        pppd/modem_example/modem.c, pppd/modem_example/ppp.c: Translated
612        Polish comments and other strings into English
613        * pppd/STATUS: updated to reflect the changes
614
6152001-04-20      Jake Janovetz <janovetz@uiuc.edu>
616
617        * rtems_servers/ftpd.c: Correct argument so hooks work again.
618
6192001-03-15      Ralf Corsepius <corsepius@faw.uni-ulm.de>
620
621        * include/.cvsignore: Remove dangling file.
622
6232001-01-31        Sergei Organov <osv@javad.ru>
624
625        * rtems_servers/ftp.d: Following changes:
626          - Hacks with current dir and root dir removed in favor of new libio
627            support for task-local current and root directories.
628          - Bug in `close_data_socket()' introduced by previous change fixed.
629          - `command_pasv()' changed to set timeout on socket we are listening
630            on and code fixed to don't close socket twice on error.
631          - `serr()' changed to clear `errno'.
632          - `data_socket()' changed to clear `errno' before `bind()'.
633          - `session()' changed to clear `errno' before processing session.
634          - `close_data_socket()' fixed to close both active and passive sockets
635          - Initialize info->data_socket to -1 in `daemon()'
636          - Initialize `fname' to empty string  in `exec_command()'
637
6382001-02-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
639
640        * Makefile.am, arpa/Makefile.am, machine/Makefile.am, net/Makefile.am,
641        netinet/Makefile.am, nfs/Makefile.am, rtems/Makefile.am,
642        rtems_servers/Makefile.am, rtems_webserver/Makefile.am,
643        sys/Makefile.am, vm/Makefile.am:
644        Apply include_*HEADERS instead of H_FILES.
645        * include/Makefile.am: Remove.
646        * Makefile.am: Add handling of *.h files.
647        * configure.in: Remove include/Makefile.
648
6492001-01-25      Eric Norum <eric.norum@usask.ca>
650
651        * lib/tftpDriver.c: Reduce first timeout interval.  This
652        improves throughput on systems which are dropping packets. 
653        Only the first timeout is reduced.  This keeps the number
654        of extra packets down on networks that are very busy and
655        dropping lots of packets.
656
6572001-01-24      Sergei Organov <osv@javad.ru>
658
659        * rtems_servers/ftpd.c, rtems_servers/ftpd.h: Major enhancements
660        as listed below:
661          - Timeouts on sockets implemented. 'idle' field added to
662            configuration. No timeout by default to keep backward compatibility.
663            Note: SITE IDLE command not implemented yet.
664          - Basic global access control implemented. 'access' field added to
665            configuration. No access limitations by default to keep backward
666            compatibility.
667          - Anchor data socket for active mode (using self IP and port 20.)
668          - Fixed default data port support (still not tested).
669          - Don't allow IP address different from originating host in
670            PORT command to improve security.
671          - Fixed bug in MDTM command.
672          - Check for correctness of parsing of argument in command_port().
673          - Fixed squeeze_path() to don't allow names like 'NAME/smth' where
674            'NAME' is not a directory.
675          - Command parsing a little bit improved: command names are now
676            converted to upper-case to be more compatible with RFC (command
677            names are not case-sensitive.)
678          - Reformat comments so that they have RTEMS look-and-feel.
679          - Fixed DELE, SITE CHMOD, RMD, MKD broken by previous changes
680          - True ASCII mode implemented (doesn't work for hooks and /dev/null)
681          - Passive mode implemented, PASV command added.
682          - Default port for data connection could be used (untested, can't find
683            ftp client that doesn't send PORT command)
684          - SYST reply changed to UNIX, as former RTEMS isn't registered name.
685          - Reply codes reviewed and fixed.
686
6872001-01-12      Sergei Organov <osv@javad.ru>
688
689        * rtems_servers/ftpd.c, rtems_servers/ftpd.h: Major enhancements
690        as listed below:
691            - use pool of pre-created threads to handle sessions instead of
692              creating/deleting threads on the fly
693            - LIST output is now similar to what "/bin/ls -al" would output,
694              thus FTP clients such Netscape are happy with it.
695            - LIST NAME now works (both for files and directories)
696            - added support for NLST, CDUP, and MDTM FTP commands to make
697              more FTP clients happy
698            - keep track of CWD for every session separately
699            - ability to specify root directory name for FTPD in configuration
700              table. FTPD will then create illusion for FTP clients that this
701              is actually root directory.
702            - ignore options sent in commands, thus LIST -al FILE works and
703              doesn't try to list "-al" directory.
704            - buffers are allocated on stack instead of heap where possible to
705              eliminate malloc/free calls (avoid possible heap fragmentation
706              troubles).
707            - drop using of task notepad to pass parameters - use function
708              arguments instead
709            - use snprintf() instead of sprintf() as the latter is unsafe
710            - use of PF_INET in socket() instead of AF_INET
711
712            Here are ftp clients I've tried new FTPD with (all of them
713            running on Debian GNU/Linux 2.2):
714
715                 Lftp 2.1.10
716                 NcFTP 2.4.3
717                 Netscape 4.75
718                 ftp
719                 mc 4.5.49
720
7212001-01-02      Joel Sherrill <joel@OARcorp.com>
722
723        * CHANGELOG: Removed.
724        * README: Merged CHANGELOG contents as initial changes.
725
7262000-12-14      Eric Norum <eric.norum@usask.ca>
727
728        * lib/tftpDriver.c: Added write capability.
729
7302000-12-08      Joel Sherrill <joel@OARcorp.com>
731
732        * libc/linkaddr.c: Initialized variable to remove warning.
733        * modem/ppp.c, modem/ppp_tty.c: Made numerous variable declarations
734        conditional on PPP_COMPRESS and PPP_FILTER.  Commented out variables
735        that were not used because the code using them was commented out.
736        Removed totally unused variables.
737        * modem/pppcompress.c: Added parentheses to avoid warnings.
738        * pppd/pppmain.c: Removed numerous warnings.
739
7402000-11-30      Joel Sherrill <joel@OARcorp.com>
741
742        * modem/ppp_tty.c: Changed to include <rtems/termiostypes.h> since
743        that is an RTEMS specific header file.
744
7452000-11-30      Joel Sherrill <joel@OARcorp.com>
746
747        * sys/ttycom.h: Moved to lib/include/sys.
748        * Makefile.am: Modified to reflect above.
749
7502000-11-27      Joel Sherrill <joel@OARcorp.com>
751
752        * libc/res_init.c: Fix typo - adding missing # on include.
753
7542000-11-25      Eric Norum <eric.norum@usask.ca>
755
756        * libc/res_init.c: Move include to avoid compiler dumping core.
757
7582000-11-25  Antti P Miettinen  <antti.p.miettinen@nokia.com>
759
760        * wrapup/Makefile.am: Added modem subdir.
761        * configure.in, Makefile.am: Added modem subdir.
762        * net/Makefile.am: Added if_pppvar.h, pppcompress.h.
763        * pppd/Makefile.am: Added pppmain.c (which needs work).
764        * pppd/chat.c, pppd/fsm.c, pppd/fsm.h, pppd/ipxcp.c, pppd/main.c,
765        pppd/ppp_tty.c, pppd/upap.c: Changes from Thomas Doerfler
766        <Thomas.Doerfler@imd-systems.de> and cosmetic changes by me.
767        Actually main.c and ppp_tty.c should be scratched. The modem
768        subdir has the real ppp_tty.c and the real pppd main is in pppmain.c.
769
7702000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
771
772        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
773
7742000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
775
776        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
777
7782000-10-30      Joel Sherrill <joel@OARcorp.com>
779
780        * POSIX include files merged into newlib.  This resulted in
781        some definitions moving to other files and thus some secondary
782        effects in RTEMS source code.
783        * machine/types.h: Added _CLOCKID_T_ and _TIMER_T_ to be in sync
784        with newlib's <machine/types.h>.
785        * rtems/rtems_bsdnet_internal.h: newlib now includes definition
786        of struct itimerval in <sys/time.h>.
787
7882000-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
789
790        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
791        Switch to GNU canonicalization.
792
7932000-10-19  Antti P Miettinen  <anmietti@trshp.ntc.nokia.com>
794
795        * lib/tftpDriver.c: add comments to handlers struct function pointers.
796        * rtems/rtems_glue.c: move pointer arithmetic to be _after_
797        pointer has been checked against NULL.
798
7992000-10-18       Chris Johns <ccj@acm.org>
800
801        * pppd/ipxcp.c: Fixed a typo.
802
8032000-09-28      Joel Sherrill <joel@OARcorp.com>
804
805        * rtems_webserver/Makefile.am, rtems_webserver/base64.c,
806        rtems_webserver/base64.c: Renamed base64.c to wbase64.c.
807        * rtems_webserver/sock.c: Added file missed in merger.
808
8092000-09-22      Joel Sherrill <joel@OARcorp.com>
810
811        * machine/types.h, pppd/pppd.h, rtems/rtems_bsdnet_internal.h,
812        rtems_webserver/webmain.c: machine/types.h  should not have
813        included rtems.h.  It is now including precisely the
814        least amount of low level, yet portable .h files to get
815        the basic RTEMS types defined.  This rippled into other
816        files since rtems_bsdnet_internal.h used machine/types.h to include
817        rtems.h.
818
8192000-09-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
820
821        * ChangeLog: Cleanup.
822
8232000-09-05      Joel Sherrill <joel@OARcorp.com>
824
825        * rtems/rtems_syscall.c: Changed from O_NONBLOCK to internal
826        RTEMS_LIBIO_FLAGS_NO_DELAY to avoid O_NONBLOCK/O_NDELAY confusion
827        and to work with the converted flags.
828
8292000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
830
831        * kern/Makefile.am, lib/Makefile.am, libc/Makefile.am,
832        net/Makefile.am, netinet/Makefile.am, nfs/Makefile.am,
833        pppd/Makefile.am, rtems/Makefile.am, rtems_servers/Makefile.am,
834        rtems_webserver/Makefile.am, wrapup/Makefile.am: Include compile.am
835
8362000-09-01      Rosimildo daSilva <rdasilva@connecttel.com>
837
838        * emfdb.c: Removed stray semi-colon.  Reported on GoAhead
839        mailing lists by Jim Rudnicki <jdrudnicki@yahoo.com>
840
8412000-08-31      Joel Sherrill <joel@OARcorp.com>
842
843        * Merged version 2.1 of GoAhead webserver.  This update
844        was submitted by Antti P Miettinen <antti.p.miettinen@nokia.com>.
845        * NOTES, base64.c, ejIntrn.h, emfdb.c, emfdb.h, md5.h, md5c.c,
846        um.c, um.h: New files.
847        * wbase64.c: Removed.
848        * Makefile.am, asp.c, balloc.c, default.c, ej.h, ejlex.c, ejparse.c,
849        form.c, h.c, handler.c, mime.c, misc.c, ringq.c, rom.c, security.c,
850        socket.c, sym.c, uemf.c, uemf.h, url.c, value.c, webcomp.c, webmain.c,
851        webpage.c, webrom.c, webs.c, webs.h, websuemf.c, wsIntrn.h: Modified.
852
8532000-08-31      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
854
855        * netinet/tcp_input.c: Spelling corrections.
856
8572000-08-30      Joel Sherrill <joel@OARcorp.com>
858
859        * rtems_webserver/license.txt: New file.
860
8612000-08-10      Joel Sherrill <joel@OARcorp.com>
862
863        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.