source: rtems/cpukit/libnetworking/ChangeLog @ 6a02d055

Last change on this file since 6a02d055 was 6a02d055, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/06/03 at 09:08:47

2003-03-06 Ralf Corsepius <corsepiu@…>

  • netinet/in_chksum.c: Remove duplicate case to include in_chksum_arm.c.
  • Property mode set to 100644
File size: 36.8 KB
Line 
12003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2
3        * netinet/in_chksum.c: Remove duplicate case to include
4        in_chksum_arm.c.
5
62003-02-20      Till Straumann <strauman@slac.stanford.edu>
7
8        PR 351/networking
9        * nfs/bootp_subr.c: Fix ridiculous leak in bootp and use
10        strdup_bootp_realloc() everywhere for sake of consistency.
11
122003-02-11      Mike Siers <mikes@poliac.com>
13
14        * rtems/rtems_glue.c: A small patch to the network daemon task
15        code.  I just added code to check the return value of
16        the rtems_bsdnet_event_receive function.  Only when
17        this function returns a SUCCESSFUL status, will the
18        event flags be checked.  This is more of a code cleanup issue
19        than a bug.  The patch will just ensure the ipintr() and
20        arpintr() functions are only called when a event is signaled.
21
222003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
23
24        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
25
262003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
27
28        * configure.ac: AC_PREREQ(2.57).
29
302003-02-06      Mike Siers <mikes@poliac.com>
31
32        PR 342/networking
33        * kern/uipc_mbuf.c: The RTEMS version of the m_copyback is changing
34        the m_len value of the mbuf.  I looked into the source from another
35        BSD system and the mbuf length is not changed inside this function.
36        The m_copyback function is only being used in the net/rtsock.c file.
37        So I think this problem is only visable under certain routing table
38        conditions. 
39
402003-02-05      Thomas Doerfler <Thomas.Doerfler@imd-systems.de>
41
42        PR 341/networking
43        * lib/ftpfs.c: Account for NULL at end of strings when malloc()'ing
44        memory.
45
462003-01-28      Joel Sherrill <joel@OARcorp.com>
47
48        * Makefile.am: Add kern/kern_sysctl.c to Makefile.am so networking
49        tests build. This was subsequently reported as PR337 before I
50        committed the fix.
51
522003-01-27      Till Straumann <strauman@SLAC.Stanford.edu>
53
54        * libc/getproto.c, libc/getprotoname.c: modification to call
55        getprotoent_static() if fopen() on /etc/protocols fails.
56
572003-01-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
58
59        * netinet/tcp_subr.c: Add args to INP_INFO_RLOCK, INP_INFO_RUNLOCK,
60        INP_LOCK, INP_UNLOCK macros.
61        * netinet/udp_usrreq.c: Add args to INP_INFO_RLOCK, INP_INFO_RUNLOCK,
62        INP_LOCK, INP_UNLOCK macros.
63
642003-01-03      Jitendra Vegiraju <jvegiraju@netscape.net>
65
66        * sys/queue.h: Fix alignment problem on ARM.
67
682003-01-03      Chris Johns <cjohns@cybertec.com.au>
69
70        * Makefile.am: Added sys/linker_set.h
71        * kern/Makefile.am: Added kern_mib.c and kern_sysctl.c.
72        * kern/uipc_socket.c: OID changed from KERN_SOMAXCONN to KIPC_SOMAXCONN.
73        * kern/uipc_socket2.c: OID changed from KERN_MAXSOCKBUF to
74        KIPC_MAXSOCKBUF.
75        * net/if_ethersubr.c: FreeBSD 2.2.2 does not have a _net_link node
76        while 5.0 does.
77        * net/if_ppp.c: Removed the TEXT_SET define as these macros are
78        now implemented.
79        * net/rtsock.c: Enable sysctl support plus fix the bug with the
80        lastest FreeBSD sysctl header file.
81        * netinet/icmp_var.h: FreeBSD 2.2.2 does not have a _net_inet_icmp
82        node while 5.0 does.
83        * netinet/if_ether.c: FreeBSD 2.2.2 does not have a _net_link_ether
84        node while 5.0 does.
85        * netinet/igmp_var.h: FreeBSD 2.2.2 does not have a _net_inet_igmp
86        node while 5.0 does.
87        * netinet/in_pcb.c: Fixed the arguments to the sysctl call. Add
88        inp_gencnt and ipi_count. These are used when listing connections.
89        * netinet/in_pcb.h: Added counters to aid the listing of connections.
90        * netinet/in_var.h: Provide the _net_inet_ip and _net_inet_raw nodes.
91        * netinet/ip_fw.c: Disable the firewall sysctl calls.
92        * netinet/tcp_subr.c: Merge tcp_pcblist from the lastest FreeBSD source.
93        * netinet/tcp_var.h: Add structures needed by net-snmp to list
94        connections.
95        * netinet/udp_usrreq.c: Merged udp_pcblist from the lastest FreeBSD
96        source.
97        * netinet/udp_var.h: Added the sysctl id UDPCTL_PCBLIST. Used by
98        net-snmp.
99        * rtems_glue.c: Call sysctl_register_all when initialising the
100        network stack to register all the sysctl calls. These are in the
101        special sections and required an updated linker script.
102        * rtems/rtems_syscall.c: Add the sysctl call.
103        * sys/kernel.h: Use the lastest FreeBSD method of handling sysctl
104        structures.  This now held in the sys/linker_set.h file.
105        * sys/queue.h: This is from the lastest FreeBSD code with the circular
106        code merged back in as it is not used in the lastest FreeBSD kernel.
107        * sys/sysctl.h: The lastest sysctl. This was needed to use with the new
108        linker set method. The FreeBSD 2.2.2 version has asm hacks. The lastest
109        version of the FreeBSD does not have these hacks. It uses gcc attribute
110        directives.
111
1122002-12-18      Eric Norum <eric.norum@usask.ca>
113        * Makefile.am: Include netinet sources.
114
1152002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
116
117        * Makefile.am: Merge-in kern/Makefile.am, net/Makefile.am,
118        netinet/Makefile.am, netinet/Makefile.am, nfs/Makefile.am,
119        rtems/Makefile.am.
120        * kern/Makefile.am: Remove.
121        * net/Makefile.am: Remove.
122        * netinet/Makefile.am: Remove.
123        * nfs/Makefile.am: Remove.
124        * rtems/Makefile.am: Remove.
125        * wrapup/Makefile.am: Reflect changes above.
126        * configure.ac: Ditto.
127
1282002-12-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
129
130        * kern/Makefile.am: Remove C_O_FILES;
131        Don't let all-local depend on $OBJS)
132        * lib/Makefile.am: Ditto.
133        * libc/Makefile.am: Ditto.
134        * net/Makefile.am: Ditto.
135        * netinet/Makefile.am: Ditto.
136        * nfs/Makefile.am: Ditto.
137        * rtems/Makefile.am: Ditto.
138
1392002-11-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
140
141        * configure.ac: Fix package name.
142
1432002-11-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
144
145        * Makefile.am: Merge-in HEADER-handling from
146        net/Makefile.am, netinet/Makefile.am, nfs/Makefile.am.
147        * net/Makefile.am: Remove *_HEADERS.
148        * netinet/Makefile.am: Remove *_HEADERS.
149        * nfs/Makefile.am: Remove *_HEADERS.
150
1512002-11-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
152
153        * Makefile.am: Merge-in arpa/Makefile.am, machine/Makefile.am,
154        sys/Makefile.am, vm/Makefile.am.
155        Add . to SUBDIRS.
156        * arpa/Makefile.am: Remove.
157        * machine/Makefile.am: Remove.
158        * sys/Makefile.am: Remove.
159        * vm/Makefile.am: Remove.
160        * configure.ac: Reflect changes above.
161
1622002-11-06      Chris Johns <ccj@acm.org>
163
164        * sys/select.h: Add C++ to C external.
165
1662002-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
167
168        * kern/uipc_mbuf.c: Comment out m0 in m_copydata to suppress
169        warning.
170
1712002-11-01      Joel Sherrill <joel@OARcorp.com>
172
173        * ChangeLog: Corrected.
174
1752002-11-01      Eric Norum <eric.norum@usask.ca>
176
177        * nfs/bootp_subr.c, rtems/rtems_bsdnet.h, rtems/rtems_glue.c:
178        Till Straumann's patch (PR295) to use bootp option 129 to get
179        command line string.  Till Straumann's patch to change
180        inet_ntoa->inet_ntop.
181
1822002-10-31      Joel Sherrill <joel@OARcorp.com>
183
184        * libc/rcmd.c, netinet/in_cksum_arm.c: Removed warnings.
185
1862002-10-28      Joel Sherrill <joel@OARcorp.com>
187
188        * Pass to eliminate warnings.
189        * kern/uipc_mbuf.c: Conditional SYSINIT() usage on __rtems__.
190        Fix return statement without a value.
191        * lib/ftpfs.c: read and write filesystem routines return ssize_t.
192        * lib/syslog.c: Add include of <string.h> to eliminate warning.
193        * lib/tftpDriver.c: read and write filesystem routines return ssize_t.
194        * libc/gethostbydns.c: Prototype abort().
195        * libc/inet_ntoa.c: Prototype strcpy().
196        * libc/rcmd.c: Add include of <sys/select.h>
197        * net/if_loop.c: Turn token at end of endif to comment.
198        * net/rtsock.c, nfs/bootp_subr.c:  Conditional SYSINIT() usage
199        on __rtems__.
200        * rtems/rtems_bootp.c: Add include of <rtems/rtems_bsdnet_internal.h>.
201        * rtems/rtems_bsdnet_internal.h: Added prototypes for memcpy() and
202        memset() since the BSD code tries to avoid using libc .h files
203        since it is used to being in the kernel.
204        * rtems/rtems_syscall.c: read and write filesystem routines
205        return ssize_t.
206
2072002-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
208
209        * configure.ac: Add nostdinc to AM_INIT_AUTOMAKE.
210
2112002-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
212
213        * Makefile.am: Remove bogus reference to CHANGELOG.
214
2152002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
216
217        * .cvsignore: Reformat.
218        Add autom4te*cache.
219        Remove autom4te.cache.
220
2212002-10-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
222
223        * net/if_ethersubr.c: Add comments to #endif NETATALK to stop
224        gcc from complaining.
225
2262002-10-07      Eric Norum <eric.norum@usask.ca>
227
228        * netinet/tcp_var.h: Corrected typo in ARM alignment patch which
229        broke all other ports.
230
2312002-10-04      Jay Monkman <jtm@smoothsmoothie.com>
232
233        * netinet/in_cksum.c, netinet/ip_icmp.h, netinet/ip_input.c,
234        netinet/tcp_input.c, netinet/tcp_subr.c, netinet/tcp_var.h,
235        sys/queue.h: Address alignment requirements for the ARM.
236
2372002-10-04      Jay Monkman <jtm@smoothsmoothie.com>
238
239        * rtems/rtems_glue.c: Add IP aliasing ioctls SIOCAIFADDR and
240        SIOCDIFADDR.
241
2422002-10-02      Joel Sherrill <joel@OARcorp.com>
243
244        * kern/uipc_socket.c: Make sure that small non-zero delays work.
245        Suggested cleanup from Eric Norum.
246
2472002-10-02      Eric Norum <eric.norum@usask.ca>
248
249        * rtems/mkrootfs.c: As part of PR283, remove redundant code that
250        creates /etc/passwd and /etc/group.
251
2522002-09-16      Joel Sherrill <joel@OARcorp.com>
253
254        * netinet/Makefile.am, netinet/udp_usrreq.c: Back off some of
255        the IP_FORWARD patch as it appears to not compile in the
256        current tree.
257
2582002-09-14      Joel Sherrill <joel@OARcorp.com>
259
260        * kern/uipc_socket.c: Fix case on SO_RCVTIMEO and SO_SNDTIMEO where
261        conversion into ticks can result in a 0 ticks timeout which is
262        the same as requesting no timeout.  Reported by Sergei Organov
263        <osv@javad.ru>.
264
2652002-09-14      Vyacheslav V. Burdjanadze <wr@zelax.ru>
266
267        * kern/uipc_mbuf.c, sys/mbuf.h, netinet/udp_usrreq.c: Add
268        optional UDP broadcast forwarding support.
269        * netinet/Makefile.am: Defined FORWARD_PROTOCOL to enabled UDP
270        broadcast forwarding.
271
2722002-09-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
273
274        * netinet/in_cksum.c: #include <string.h> for puts in generic
275        routines.
276
2772002-08-20      Eric Norum <eric.norum@usask.ca>
278
279        * rtems/rtems_glue.c: Per PR270, the BSD network code expects that
280        the value of the number of seconds since boot is non-zero.  The
281        RTEMS network initialization code assures this by waiting for a
282        second.  A more efficient technique is to simply wait until the
283        number of seconds since boot is non-zero.
284
2852002-08-09      Joel Sherrill <joel@OARcorp.com>
286
287        * libc/getservent.c: Per PR265, add  #include <netinet/in.h> for
288        ntohl() function.
289
2902002-08-07      Joel Sherrill <joel@OARcorp.com>
291
292        * netinet/in.h: Per PR263, added include of <machine/endian.h>
293        to <netinet/in.h> so it includes prototypes of ntohl() family
294        of routines.
295
2962002-08-01      Joel Sherrill <joel@OARcorp.com>
297
298        * machine/param.h, sys/syslimits.h: In the continued effort to
299        eliminate .h conflicts between newlib and RTEMS, these were moved to
300        newlib.
301        * machine/Makefile.am, sys/Makefile.am: Reflect above.
302
3032002-08-01      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
304
305        * wrapup/Makefile.am: Don't install.
306
3072002-07-30      Joel Sherrill <joel@OARcorp.com>
308
309        * sys/param.h: Removed as a simpler version of this file is
310        now part of the RTEMS newlib support.
311        * sys/Makefile.am: Modified to reflect above. 
312
3132002-07-30      Joel Sherrill <joel@OARcorp.com>
314
315        * machine/types.h: Removed as a simpler version of this file is
316        now part of the RTEMS newlib support.
317        * machine/Makefile.am, machine/endian.h, nfs/bootp_subr.c,
318        rtems/rtems_bsdnet_internal.h, sys/Makefile.am, sys/systm.h:
319        Minor modifications to use the simpler machine/types.h.  Mostly
320        more complete sets of #include's to account for machine/types.h
321        no longer doing this.
322
3232002-07-30      Jay Monkman <jtm@smoothsmoothie.com>
324
325        * netinet/in_cksum.c, netinet/in_cksum_arm.c: Added ARM in_cksum
326        support.
327
3282002-07-24      Joel Sherrill <joel@OARcorp.com>
329
330        * sys/select.h: Add a prototype of select() to avoid warnings.
331        In particular a C++ application using select() required a prototype.
332
3332002-07-24      Joel Sherrill <joel@OARcorp.com>
334
335        * Makefile.am, libc/res_send.c: Do not install or use <poll.h>
336        since RTEMS does not support it.
337
3382002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
339
340        * kern/Makefile.am: Use .$(OBJEXT) instead of .o.
341        * lib/Makefile.am: Ditto.
342        * libc/Makefile.am: Ditto.
343        * net/Makefile.am: Ditto.
344        * netinet/Makefile.am: Ditto.
345        * nfs/Makefile.am: Ditto.
346        * rtems/Makefile.am: Ditto.
347        * wrapup/Makefile.am: Ditto.
348
3492002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
350
351        * kern/Makefile.am: Eliminate LIBNAME.
352        * lib/Makefile.am: Ditto.
353        * libc/Makefile.am: Ditto.
354        * net/Makefile.am: Ditto.
355        * netinet/Makefile.am: Ditto.
356        * nfs/Makefile.am: Ditto.
357        * rtems/Makefile.am: Ditto.
358        * wrapup/Makefile.am: Use project_libdir instead of
359        $(PROJECT_RELEASE)/lib.
360
3612002-07-17      Jay Monkman <jtm@smoothsmoothie.com>
362
363        * netinet/in.h, netinet/ip.h, netinet/ip_var.h, netinet/tcp.h:
364        Modified to added packed attribute.o
365
3662002-07-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
367
368        * configure.ac: RTEMS_TOP(../..).
369
3702002-07-01      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
371
372        * configure.ac: Remove RTEMS_PROJECT_ROOT.
373
3742002-06-27      Thomas Doerfler <Thomas.Doerfler@imd-systems.de>
375
376        * Addition of a ftp client filesystem, comparable to the tftp one.
377        * lib/ftpfs.c, rtems/ftpfs.h: New files.
378        * lib/Makefile.am, rtems/Makefile.am: Modified to reflect above.
379
3802002-06-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
381
382        * configure.ac: Use AC_CONFIG_AUX_DIR(../..).
383        Add AC_PROG_RANLIB.
384
3852002-06-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
386
387        * wrapup/Makefile.am: Don't preinstall libnetworking.a.
388
3892002-06-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
390
391        * Makefile.am: Remove commented out net-apps.
392
3932002-06-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
394
395        * arpa/Makefile.am: Include $(top_srcdir)/../automake/*.am.
396        * kern/Makefile.am: Include $(top_srcdir)/../automake/*.am.
397        * Makefile.am: Include $(top_srcdir)/../automake/*.am.
398        Use ../aclocal.
399        * lib/Makefile.am: Include $(top_srcdir)/../automake/*.am.
400        * libc/Makefile.am: Include $(top_srcdir)/../automake/*.am.
401        * machine/Makefile.am: Include $(top_srcdir)/../automake/*.am.
402        * net/Makefile.am: Include $(top_srcdir)/../automake/*.am.
403        * netinet/Makefile.am: Include $(top_srcdir)/../automake/*.am.
404        * nfs/Makefile.am: Include $(top_srcdir)/../automake/*.am.
405        * rtems/Makefile.am: Include $(top_srcdir)/../automake/*.am.
406        * sys/Makefile.am: Include $(top_srcdir)/../automake/*.am.
407        * vm/Makefile.am: Include $(top_srcdir)/../automake/*.am.
408        * wrapup/Makefile.am: Include $(top_srcdir)/../automake/*.am.
409
4102002-06-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
411
412        * rtems/Makefile.am: include multilib.am instead of RTEMS_BSP.cfg.
413
4142002-05-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
415
416        * configure.ac: Remove RTEMS_CHECK_POSIX_API.
417          Remove RTEMS_ENABLE_POSIX.
418          Remove RTEMS_CHECK_CUSTOM_BSP.
419          Remove RTEMS_ENABLE_POSIX.
420
4212002-05-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
422
423        Relocate c/src/libnetworking.
424        * Makefile.am: Reflect moval.
425        * machine/Makefile.am: Ditto.
426        * net/Makefile.am: Ditto.
427        * lib/Makefile.am: Ditto.
428        * netinet/Makefile.am: Ditto.
429        * vm/Makefile.am: Ditto.
430        * libc/Makefile.am: Ditto.
431        * sys/Makefile.am: Ditto.
432        * arpa/Makefile.am: Ditto.
433        * nfs/Makefile.am: Ditto.
434        * kern/Makefile.am: Ditto.
435        * rtems/Makefile.am: Ditto.
436        * configure.ac: Dittp.
437        * wrapup/Makefile.am: Ditto. Remove references to networking apps.
438
4392002-05-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
440
441        * rtems_telnetd/pty.c: Remove bsp.h. Include <rtems/bspIo.h>.
442
4432002-05-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
444
445        * rtems/mkrootfs.c: Add (relocated from libmisc/rootfs).
446        * rtems/mkrootfs.h: Ditto.
447        * rtems/Makefile.am: Reflect changes above.
448
4492002-05-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
450
451        * sys/ioctl.h: Remove.
452        * sys/sockio.h: Remove.
453        * sys/filio.h: Remove.
454        * sys/Makefile.am: Reflect changes above.
455
4562001-05-14      Joel Sherrill <joel@OARcorp.com>
457
458        * ChangeLog: Corrected -- entry should have been in libchip.
459 
4602002-05-01      Eric Norum <eric.norum@usask.ca>
461
462        * machine/in_cksum.h: Per PR200 fix multi-line inline assembly
463        to satisfy gcc 3.1 and newer.
464
4652002-04-26      Eric Norum <eric.norum@usask.ca>
466
467        * netinet/in_cksum_i386.c: Add volatile so the more agressive
468        optimization in gcc 3.1 does not reorder things.
469
4702002-04-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
471
472        * pppd/utils.c: Adapt to gcc-3.x.
473
4742002-04-11      Chris Johns <ccj@acm.org>
475
476        * c/src/libnetworking/rtems/rtems_bsdnet.h: To address PR59, added
477        the drv_ctrl driver control block field to the ifconfig network driver
478        structure. This field is needed by the i82586 driver which was ported
479        from NetBSD as it had better hardware abstraction.
480
4812002-04-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
482
483        * ChangeLog: Fix dates.
484
4852002-03-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
486
487        * libc/rcmd.c: Replace __rtems w/ __rtems__.
488
4892002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
490
491        * configure.ac:
492        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
493        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
494        * arpa/Makefile.am: Remove AUTOMAKE_OPTIONS.
495        * kern/Makefile.am: Remove AUTOMAKE_OPTIONS.
496        * Makefile.am: Remove AUTOMAKE_OPTIONS.
497        * lib/Makefile.am: Remove AUTOMAKE_OPTIONS.
498        * libc/Makefile.am: Remove AUTOMAKE_OPTIONS.
499        * machine/Makefile.am: Remove AUTOMAKE_OPTIONS.
500        * net/Makefile.am: Remove AUTOMAKE_OPTIONS.
501        * netinet/Makefile.am: Remove AUTOMAKE_OPTIONS.
502        * nfs/Makefile.am: Remove AUTOMAKE_OPTIONS.
503        * pppd/Makefile.am: Remove AUTOMAKE_OPTIONS.
504        * rtems/Makefile.am: Remove AUTOMAKE_OPTIONS.
505        * rtems_servers/Makefile.am: Remove AUTOMAKE_OPTIONS.
506        * rtems_telnetd/Makefile.am: Remove AUTOMAKE_OPTIONS.
507        * rtems_webserver/Makefile.am: Remove AUTOMAKE_OPTIONS.
508        * sys/Makefile.am: Remove AUTOMAKE_OPTIONS.
509        * vm/Makefile.am: Remove AUTOMAKE_OPTIONS.
510        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
511
5122002-03-27      Thomas.Doerfler@imd-systems.de
513
514        * PR144
515        * nfs/bootp_subr.c bootpc_init(): Performs a write to memory address
516        0 when called for the first time. This is done when trying to clear
517        the variable "dhcp_hostname".
518
5192002-03-27      Ilya Alexeev <ilya@continuum.ru>
520
521        * PR162
522        * net/if_ppp.c ppp_txdaemon(), net/if_pppvar.h pppstart(): Local
523        variables must not be used in a device write routines.  Now
524        ppp_softc structure have own character for writing to device
525        (sc_outchar).  I think that converting local variables to static
526        is not a right solution, because problems will occur in the case
527        of two or more ppp instances.
528        * net/ppp_tty.c pppstart(): Type of the ioffset variable must be
529        u_long, otherwise in the case of the big output packet endless
530        loop may occur.
531
5322002-03-21      Ilya Alexeev <ilya@continuum.ru>
533
534        * net/if_ppp.c, net/ppp_tty.c: Initial preparations for multiple
535        PPPD connections.
536
5372001-03-20      Till Straumann <strauman@SLAC.Stanford.EDU>
538
539        * PR158
540        * libc/rcmd.c, libc/rcmd.c: Enable the rcmd() library call by
541        commenting out the parts that deal with signals.  This enables
542        RTEMS to 'rsh' command to a server connecting fd to remote stdio.
543        The 'server-side' parts of this file which deal with authentication
544        are disabled since they are not needed.
545
5462002-02-27      Ilya Alexeev <ilya@continuum.ru>
547
548        * net/if_ppp.c, pppd/auth.c, pppd/chat.c, pppd/pppd.h,
549        pppd/sys-rtems.c: Add server with pap-authorization
550        capabilities as well as eliminate some warnings.
551
5522002-02-27      Eric Norum <eric.norum@usask.ca>
553
554        * net/radix.c: Properly handle fetching the default route when there
555        is no route.  This was a bug in the original FreeBSD code and this
556        fix is from an updated version of their code.
557
5582002-02-01      Mike Siers <mikes@poliac.com>
559
560        * pppd/rtemspppd.c (rtems_pppd_disconnect): Modified to avoid bringing
561        the link down too fast.
562        NOTE: Mike reports successfully running at 56K baud on a direct link.
563
5642002-01-31      Mike Siers <mikes@poliac.com>
565
566        * pppd/rtemsdialer.h: New file missed in previous commit.
567
5682002-01-31      Mike Siers <mikes@poliac.com>
569
570        * Nice Update of PPPD support which eliminates the
571        requiremetn that drivers be in the termios TASK_DRIVEN mode.
572        Mike did significant testing and reports that it seems to be
573        more stable and handle larger packets better.  This patch
574        replaces the termios tasks with more general pppd network
575        driver tasks.  The functions pppinput() and pppstart() get
576        called from the interrupt service routine.
577        * Makefile.am, configure.ac, net/Makefile.am, net/bpf.h,
578        net/ethernet.h, net/if.c, net/if.h, net/if_arp.h, net/if_dl.h,
579        net/if_ethersubr.c, net/if_llc.h, net/if_loop.c, net/if_ppp.h,
580        net/if_pppvar.h, net/if_types.h, net/netisr.h, net/ppp-comp.h,
581        net/ppp_defs.h, net/pppcompress.h, net/radix.c, net/radix.h,
582        net/raw_cb.c, net/raw_cb.h, net/raw_usrreq.c, net/route.c,
583        net/route.h, net/rtsock.c, pppd/Makefile.am, pppd/README,
584        pppd/STATUS, pppd/auth.c, pppd/cbcp.c, pppd/ccp.c, pppd/ccp.h,
585        pppd/chap.c, pppd/chap.h, pppd/chap_ms.c, pppd/chap_ms.h,
586        pppd/chat.c, pppd/demand.c, pppd/fsm.c, pppd/fsm.h, pppd/ipcp.c,
587        pppd/ipcp.h, pppd/ipxcp.c, pppd/ipxcp.h, pppd/lcp.c, pppd/lcp.h,
588        pppd/magic.c, pppd/magic.h, pppd/options.c, pppd/patchlevel.h,
589        pppd/pathnames.h, pppd/pppd.8, pppd/pppd.h, pppd/rtemsmain.c,
590        pppd/rtemspppd.c, pppd/rtemspppd.h, pppd/sys-rtems.c, pppd/upap.c,
591        pppd/upap.h, pppd/utils.c, pppd/example/README,
592        pppd/example/netconfig.h, wrapup/Makefile.am: Modified.
593        * net/bsd-comp.c, net/if_ppp.c, net/ppp-deflate.c, net/ppp.h,
594        net/ppp_tty.c, net/pppcompress.c, net/zlib.c, net/zlib.h: New file.
595        * modem/, modem/.cvsignore, modem/Makefile.am, modem/ppp.c,
596        modem/ppp.h, modem/ppp_tty.c, modem/pppcompress.c: Subdirectory removed.
597
5982002-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
599
600        * rtems_telnetd/pty.c: Move config.h to were it belongs.
601        Remove printf (Reported by Till Straumann
602        <strauman@SLAC.Stanford.EDU>).
603
6042002-02-16      Eric Norum <eric.norum@usask.ca>
605
606        * lib/tftpDriver.clib/tftpDriver.c: Fix TFTP block number checking.
607
6082002-02-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
609
610        * pppd/sys-rtems.c: Remove unused variable status from
611        dodefaultroute.
612
6132002-02-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
614
615        * lib/tftpDriver.c: Remove set_errno_and_return_minus_one, include
616        <rtems/seterr.h>.
617
618
6192001-12-18      Eric Norum <eric.norum@usask.ca>
620
621        * lib/tftpDriver.c: Allow chdir() to work on TFTP `directories'
622        (path names with a / at the end) while disallowing open() operations
623        on TFTP `directories'.
624
6252001-12-07      Eric Norum <eric.norum@usask.ca>
626
627        * lib/tftpDriver.c: Restore write capability.
628
6292001-11-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
630
631        * arpa/Makefile.am: Remove stray lines.
632
6332001-10-18      Eric Norum <eric.norum@usask.ca>
634
635        * lib/tftpDriver.c: Properly handles ../ components in chdir() and
636        open() operations within the TFTP file system.
637
6382001-10-12      Mike Siers <mikes@poliac.com>
639
640        * Update to stable working state.  Congratulations Mike! :)
641        * modem_example: Directory removed.
642        * modem_example/16550.h, modem_example/README, modem_example/modem.c,
643        modem_example/modem.h, modem_example/ppp.c, modem_example/ppp.h,
644        modem_example/pppcompress.c: Files removed.
645        * pppd/example/pppd.options: New file.
646        * pppd/README, pppd/STATUS, pppd/cbcp.c, pppd/cbcp.h, pppd/chat.c,
647        pppd/pppd.h, pppd/rtemsmain.c: Updated.
648
6492001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
650
651        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
652        * configure.in: Remove.
653        * configure.ac: New file, generated from configure.in by autoupdate.
654
6552001-09-27      Eric Norum <eric.norum@usask.ca>
656
657        * lib/tftpDriver.c: Add limited chdir() support to the TFTP
658        filesystem.
659
6602001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
661
662        * machine/Makefile.am: Use 'PREINSTALL_FILES ='.
663        * net/Makefile.am: Use 'PREINSTALL_FILES ='.
664        * netinet/Makefile.am: Use 'PREINSTALL_FILES ='.
665        * vm/Makefile.am: Use 'PREINSTALL_FILES ='.
666        * pppd/Makefile.am: Use 'PREINSTALL_FILES ='.
667        * sys/Makefile.am: Use 'PREINSTALL_FILES ='.
668        * rtems_servers/Makefile.am: Use 'PREINSTALL_FILES ='.
669        * arpa/Makefile.am: Use 'PREINSTALL_FILES ='.
670        * nfs/Makefile.am: Use 'PREINSTALL_FILES ='.
671        * rtems_webserver/Makefile.am: Use 'PREINSTALL_FILES ='.
672        * rtems/Makefile.am: Use 'PREINSTALL_FILES ='.
673        * rtems_telnetd/Makefile.am: Use 'PREINSTALL_FILES ='.
674
6752001-09-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
676
677        * Makefile.am: Use PREINSTALL_FILES = to make automake-1.5 happy.
678
6792001-09-19      Eric Norum <eric.norum@usask.ca>
680
681        * lib/tftpDriver.c: Add some debugging capability.
682
6832001-09-19      Chris Johns <ccj@acm.org>
684
685        * nfs/bootp_subr.c, rtems/rtems_bootp.c, rtems/rtems_bsdnet.h,
686        rtems/rtems_bsdnet_internal.h Added support for populating the
687        initial "root" filesystem with information obtained via the DHCP
688        response.
689
6902001-08-16      Mike Siers <mikes@poliac.com>
691
692        * pppd/STATUS: Updated by Joel based upon email from Mike.
693        * pppd/cbcp.c, pppd/cbcp.h: Readded files.  These support callback
694        functionality that has not even been compiled under RTEMS yet.
695
6962001-08-16      Joel Sherrill <joel@OARcorp.com>
697
698        * pppd/example/Makefile: Removed.
699        * pppd/example/Makefile-user: Added was Makefile.  Renamed to
700        avoid bootstrap -c clobbering it.
701
7022001-08-16      Mike Siers <mikes@poliac.com>
703
704        * Update of PPPD to 2.3.11 from 2.3.5 and addition of an example
705        application.  Mike's notes on the modifications:
706           - renamed error() function because of namespace problems
707           - removed calls to the exit() funciton
708           - removed extra files from the pppd source directory
709           - defined pppd task constant values in rtemspppd.h
710           - modifyied example code to get actual tick per second value
711           - placed the pppd 2.3.11 man page file (pppd.8) into the pppd
712           directory
713        * pppd/cbcp.c, pppd/cbcp.h, pppd/main.c, pppd/ppp_tty.c,
714        pppd/pppmain.c, pppd/rtems-ppp.c, pppd/rtems-ppp.c: Deleted.
715        * pppd/pppd.8, pppd/rtemsmain.c, pppd/rtemspppd.c, pppd/rtemspppd.h,
716        pppd/sys-rtems.c, pppd/utils.c, pppd/example/Makefile,
717        pppd/example/README, pppd/example/init.c, pppd/example/netconfig.h,
718        pppd/example/ppp.conf, pppd/example/pppdapp.c, pppd/example/system.h:
719        New files.
720        * modem/ppp_tty.c, net/if_ppp.h, pppd/Makefile.am, pppd/README,
721        pppd/STATUS, pppd/auth.c, pppd/ccp.c, pppd/ccp.h, pppd/chap.c,
722        pppd/chap.h, pppd/chap_ms.c, pppd/chap_ms.h, pppd/chat.c,
723        pppd/demand.c, pppd/fsm.c, pppd/fsm.h, pppd/ipcp.c, pppd/ipcp.h,
724        pppd/ipxcp.c, pppd/ipxcp.h, pppd/lcp.c, pppd/lcp.h, pppd/magic.c,
725        pppd/magic.h, pppd/options.c, pppd/patchlevel.h,
726        pppd/pathnames.h, pppd/pppd.h, pppd/upap.c, pppd/upap.h: Modified.
727
7282001-08-16      Joel Sherrill <joel@OARcorp.com>
729
730        * rtems_telnetd/.cvsignore: New file.
731
7322001-08-09      Fernando-Ruiz Casas <correo@fernando-ruiz.com>
733
734        * Makefile.am, configure.in, rtems_servers/Makefile.am,
735        rtems_servers/telnetd.c, rtems_servers/telnetd.h,
736        rtems_telnetd/Makefile.am, rtems_telnetd/README, rtems_telnetd/icmds.c,
737        rtems_telnetd/pty.c, rtems_telnetd/pty.h, rtems_telnetd/telnetd.c,
738        rtems_telnetd/telnetd.h, wrapup/Makefile.am:
739          - pty and telnetd have a new subdir rtems_telnetd to avoid
740            the side effect when ftpd change.
741          - the tcp/ip stats have been implemented into icmds.c and
742            started when telnetd daemon is started.
743        * rtems_servers/telnetd.c, rtems_servers/telnetd.h: Removed.
744        * rtems_telnetd: New directory.
745        * rtems_telnetd/Makefile.am, rtems_telnetd/README,
746        rtems_telnetd/icmds.c, rtems_telnetd/pty.c, rtems_telnetd/pty.h,
747        rtems_telnetd/telnetd.c, rtems_telnetd/telnetd.h: New files.
748
7492001-05-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
750
751        * rtems_servers/Makefile.am: Deleted blank lines.
752
7532001-06-14      Joel Sherrill <joel@OARcorp.com>
754
755        * rtems_servers/telnetd.c, shell/telnetd.h: Moved from libmisc/shell
756        so the network stack to address network depenendency.
757        * rtems_servers/Makefile.am: Modified to reflect above.
758
7592001-05-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
760
761        * libc/Makefile.am: Remove -D__STRICT_ANSI__.
762
7632001-04-24      Eric Norum <eric.norum@usask.ca>
764
765        * lib/rtems_bsdnet_ntp.c: Modifications to make the RTEMS NTP
766        synchronization a little more robust -- no NTP daemon yet, but
767        at least it trys a little harder when the primary NTP server is down.
768
7692001-04-20  Radzislaw Galler  <rgaller@et.put.poznan.pl>
770
771        * modem/ppp.c, pppd/main.c, pppd/pppmain.c, pppd/rtems-ppp.c,
772        pppd/modem_example/modem.c, pppd/modem_example/ppp.c: Translated
773        Polish comments and other strings into English
774        * pppd/STATUS: updated to reflect the changes
775
7762001-04-20      Jake Janovetz <janovetz@uiuc.edu>
777
778        * rtems_servers/ftpd.c: Correct argument so hooks work again.
779
7802001-03-15      Ralf Corsepius <corsepius@faw.uni-ulm.de>
781
782        * include/.cvsignore: Remove dangling file.
783
7842001-01-31        Sergei Organov <osv@javad.ru>
785
786        * rtems_servers/ftp.d: Following changes:
787          - Hacks with current dir and root dir removed in favor of new libio
788            support for task-local current and root directories.
789          - Bug in `close_data_socket()' introduced by previous change fixed.
790          - `command_pasv()' changed to set timeout on socket we are listening
791            on and code fixed to don't close socket twice on error.
792          - `serr()' changed to clear `errno'.
793          - `data_socket()' changed to clear `errno' before `bind()'.
794          - `session()' changed to clear `errno' before processing session.
795          - `close_data_socket()' fixed to close both active and passive sockets
796          - Initialize info->data_socket to -1 in `daemon()'
797          - Initialize `fname' to empty string  in `exec_command()'
798
7992001-02-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
800
801        * Makefile.am, arpa/Makefile.am, machine/Makefile.am, net/Makefile.am,
802        netinet/Makefile.am, nfs/Makefile.am, rtems/Makefile.am,
803        rtems_servers/Makefile.am, rtems_webserver/Makefile.am,
804        sys/Makefile.am, vm/Makefile.am:
805        Apply include_*HEADERS instead of H_FILES.
806        * include/Makefile.am: Remove.
807        * Makefile.am: Add handling of *.h files.
808        * configure.in: Remove include/Makefile.
809
8102001-01-25      Eric Norum <eric.norum@usask.ca>
811
812        * lib/tftpDriver.c: Reduce first timeout interval.  This
813        improves throughput on systems which are dropping packets. 
814        Only the first timeout is reduced.  This keeps the number
815        of extra packets down on networks that are very busy and
816        dropping lots of packets.
817
8182001-01-24      Sergei Organov <osv@javad.ru>
819
820        * rtems_servers/ftpd.c, rtems_servers/ftpd.h: Major enhancements
821        as listed below:
822          - Timeouts on sockets implemented. 'idle' field added to
823            configuration. No timeout by default to keep backward compatibility.
824            Note: SITE IDLE command not implemented yet.
825          - Basic global access control implemented. 'access' field added to
826            configuration. No access limitations by default to keep backward
827            compatibility.
828          - Anchor data socket for active mode (using self IP and port 20.)
829          - Fixed default data port support (still not tested).
830          - Don't allow IP address different from originating host in
831            PORT command to improve security.
832          - Fixed bug in MDTM command.
833          - Check for correctness of parsing of argument in command_port().
834          - Fixed squeeze_path() to don't allow names like 'NAME/smth' where
835            'NAME' is not a directory.
836          - Command parsing a little bit improved: command names are now
837            converted to upper-case to be more compatible with RFC (command
838            names are not case-sensitive.)
839          - Reformat comments so that they have RTEMS look-and-feel.
840          - Fixed DELE, SITE CHMOD, RMD, MKD broken by previous changes
841          - True ASCII mode implemented (doesn't work for hooks and /dev/null)
842          - Passive mode implemented, PASV command added.
843          - Default port for data connection could be used (untested, can't find
844            ftp client that doesn't send PORT command)
845          - SYST reply changed to UNIX, as former RTEMS isn't registered name.
846          - Reply codes reviewed and fixed.
847
8482001-01-12      Sergei Organov <osv@javad.ru>
849
850        * rtems_servers/ftpd.c, rtems_servers/ftpd.h: Major enhancements
851        as listed below:
852            - use pool of pre-created threads to handle sessions instead of
853              creating/deleting threads on the fly
854            - LIST output is now similar to what "/bin/ls -al" would output,
855              thus FTP clients such Netscape are happy with it.
856            - LIST NAME now works (both for files and directories)
857            - added support for NLST, CDUP, and MDTM FTP commands to make
858              more FTP clients happy
859            - keep track of CWD for every session separately
860            - ability to specify root directory name for FTPD in configuration
861              table. FTPD will then create illusion for FTP clients that this
862              is actually root directory.
863            - ignore options sent in commands, thus LIST -al FILE works and
864              doesn't try to list "-al" directory.
865            - buffers are allocated on stack instead of heap where possible to
866              eliminate malloc/free calls (avoid possible heap fragmentation
867              troubles).
868            - drop using of task notepad to pass parameters - use function
869              arguments instead
870            - use snprintf() instead of sprintf() as the latter is unsafe
871            - use of PF_INET in socket() instead of AF_INET
872
873            Here are ftp clients I've tried new FTPD with (all of them
874            running on Debian GNU/Linux 2.2):
875
876                 Lftp 2.1.10
877                 NcFTP 2.4.3
878                 Netscape 4.75
879                 ftp
880                 mc 4.5.49
881
8822001-01-02      Joel Sherrill <joel@OARcorp.com>
883
884        * CHANGELOG: Removed.
885        * README: Merged CHANGELOG contents as initial changes.
886
8872000-12-14      Eric Norum <eric.norum@usask.ca>
888
889        * lib/tftpDriver.c: Added write capability.
890
8912000-12-08      Joel Sherrill <joel@OARcorp.com>
892
893        * libc/linkaddr.c: Initialized variable to remove warning.
894        * modem/ppp.c, modem/ppp_tty.c: Made numerous variable declarations
895        conditional on PPP_COMPRESS and PPP_FILTER.  Commented out variables
896        that were not used because the code using them was commented out.
897        Removed totally unused variables.
898        * modem/pppcompress.c: Added parentheses to avoid warnings.
899        * pppd/pppmain.c: Removed numerous warnings.
900
9012000-11-30      Joel Sherrill <joel@OARcorp.com>
902
903        * modem/ppp_tty.c: Changed to include <rtems/termiostypes.h> since
904        that is an RTEMS specific header file.
905
9062000-11-30      Joel Sherrill <joel@OARcorp.com>
907
908        * sys/ttycom.h: Moved to lib/include/sys.
909        * Makefile.am: Modified to reflect above.
910
9112000-11-27      Joel Sherrill <joel@OARcorp.com>
912
913        * libc/res_init.c: Fix typo - adding missing # on include.
914
9152000-11-25      Eric Norum <eric.norum@usask.ca>
916
917        * libc/res_init.c: Move include to avoid compiler dumping core.
918
9192000-11-25  Antti P Miettinen  <antti.p.miettinen@nokia.com>
920
921        * wrapup/Makefile.am: Added modem subdir.
922        * configure.in, Makefile.am: Added modem subdir.
923        * net/Makefile.am: Added if_pppvar.h, pppcompress.h.
924        * pppd/Makefile.am: Added pppmain.c (which needs work).
925        * pppd/chat.c, pppd/fsm.c, pppd/fsm.h, pppd/ipxcp.c, pppd/main.c,
926        pppd/ppp_tty.c, pppd/upap.c: Changes from Thomas Doerfler
927        <Thomas.Doerfler@imd-systems.de> and cosmetic changes by me.
928        Actually main.c and ppp_tty.c should be scratched. The modem
929        subdir has the real ppp_tty.c and the real pppd main is in pppmain.c.
930
9312000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
932
933        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
934
9352000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
936
937        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
938
9392000-10-30      Joel Sherrill <joel@OARcorp.com>
940
941        * POSIX include files merged into newlib.  This resulted in
942        some definitions moving to other files and thus some secondary
943        effects in RTEMS source code.
944        * machine/types.h: Added _CLOCKID_T_ and _TIMER_T_ to be in sync
945        with newlib's <machine/types.h>.
946        * rtems/rtems_bsdnet_internal.h: newlib now includes definition
947        of struct itimerval in <sys/time.h>.
948
9492000-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
950
951        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
952        Switch to GNU canonicalization.
953
9542000-10-19  Antti P Miettinen  <anmietti@trshp.ntc.nokia.com>
955
956        * lib/tftpDriver.c: add comments to handlers struct function pointers.
957        * rtems/rtems_glue.c: move pointer arithmetic to be _after_
958        pointer has been checked against NULL.
959
9602000-10-18       Chris Johns <ccj@acm.org>
961
962        * pppd/ipxcp.c: Fixed a typo.
963
9642000-09-28      Joel Sherrill <joel@OARcorp.com>
965
966        * rtems_webserver/Makefile.am, rtems_webserver/base64.c,
967        rtems_webserver/base64.c: Renamed base64.c to wbase64.c.
968        * rtems_webserver/sock.c: Added file missed in merger.
969
9702000-09-22      Joel Sherrill <joel@OARcorp.com>
971
972        * machine/types.h, pppd/pppd.h, rtems/rtems_bsdnet_internal.h,
973        rtems_webserver/webmain.c: machine/types.h  should not have
974        included rtems.h.  It is now including precisely the
975        least amount of low level, yet portable .h files to get
976        the basic RTEMS types defined.  This rippled into other
977        files since rtems_bsdnet_internal.h used machine/types.h to include
978        rtems.h.
979
9802000-09-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
981
982        * ChangeLog: Cleanup.
983
9842000-09-05      Joel Sherrill <joel@OARcorp.com>
985
986        * rtems/rtems_syscall.c: Changed from O_NONBLOCK to internal
987        RTEMS_LIBIO_FLAGS_NO_DELAY to avoid O_NONBLOCK/O_NDELAY confusion
988        and to work with the converted flags.
989
9902000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
991
992        * kern/Makefile.am, lib/Makefile.am, libc/Makefile.am,
993        net/Makefile.am, netinet/Makefile.am, nfs/Makefile.am,
994        pppd/Makefile.am, rtems/Makefile.am, rtems_servers/Makefile.am,
995        rtems_webserver/Makefile.am, wrapup/Makefile.am: Include compile.am
996
9972000-09-01      Rosimildo daSilva <rdasilva@connecttel.com>
998
999        * emfdb.c: Removed stray semi-colon.  Reported on GoAhead
1000        mailing lists by Jim Rudnicki <jdrudnicki@yahoo.com>
1001
10022000-08-31      Joel Sherrill <joel@OARcorp.com>
1003
1004        * Merged version 2.1 of GoAhead webserver.  This update
1005        was submitted by Antti P Miettinen <antti.p.miettinen@nokia.com>.
1006        * NOTES, base64.c, ejIntrn.h, emfdb.c, emfdb.h, md5.h, md5c.c,
1007        um.c, um.h: New files.
1008        * wbase64.c: Removed.
1009        * Makefile.am, asp.c, balloc.c, default.c, ej.h, ejlex.c, ejparse.c,
1010        form.c, h.c, handler.c, mime.c, misc.c, ringq.c, rom.c, security.c,
1011        socket.c, sym.c, uemf.c, uemf.h, url.c, value.c, webcomp.c, webmain.c,
1012        webpage.c, webrom.c, webs.c, webs.h, websuemf.c, wsIntrn.h: Modified.
1013
10142000-08-31      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1015
1016        * netinet/tcp_input.c: Spelling corrections.
1017
10182000-08-30      Joel Sherrill <joel@OARcorp.com>
1019
1020        * rtems_webserver/license.txt: New file.
1021
10222000-08-10      Joel Sherrill <joel@OARcorp.com>
1023
1024        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.