source: rtems/cpukit/libnetworking/ChangeLog @ aba138b

4.104.114.84.95
Last change on this file since aba138b was 83e36d6b, checked in by Joel Sherrill <joel.sherrill@…>, on 02/11/03 at 22:58:08

2003-02-11 Mike Siers <mikes@…>

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