source: rtems/cpukit/libnetworking/ChangeLog @ 29329cf5

4.104.114.84.95
Last change on this file since 29329cf5 was 29329cf5, checked in by Chris Johns <chrisj@…>, on 05/15/03 at 09:29:11

PR407

  • Property mode set to 100644
File size: 38.3 KB
Line 
12003-05-15  cjohns@cybertec.com.au  <cjohns@cybertec.com.au>
2
3        * netinet/in.h:
4        PR406 - Added INET_ADDRSTRLEN per the SUSv3 standard.
5
62003-04-15      Joel Sherrill <joel@OARcorp.com>
7
8        PR 388/networking
9        * kern/kern_sysctl.c: Revert previous patch and use strlcpy() now that
10        it is available. Also fixed some warnings.
11
122003-03-27      Joel Sherrill <joel@OARcorp.com>
13
14        * kern/kern_sysctl.c: Converted from BSP strlcpy() to strncpy().
15
162003-03-25      Joel Sherrill <joel@OARcorp.com>
17
18        * rtems/rtems_bsdnet_malloc_starvation.c: Fixed name of include file.
19
202002-03-25      Eric Norum <norume@aps.anl.gov>
21
22
23        PR 374/networking
24        * Makefile.am, rtems/rtems_bsdnet.h, rtems/rtems_glue.c:
25        The patch sent as part of PR270 got applied to the wrong place. 
26        The effect was that (1) startup was no faster than before and
27        (2) malloc starvation messages came way too quickly.  The attached
28        patch fixes both these problems and also provides a mechanism for
29        applications to handle malloc starvation conditions as they see fit.
30        * rtems/rtems_bsdnet_malloc_starvation.c: New file.
31
322003-03-18      Till Straumann <strauman@slac.stanford.edu>
33
34        PR 356/bsps
35        * sys/linker_set.h: This patch makes RTEMS/PowerPC eabi compliant.
36        Declare all linker-script defined addresses as
37        variables of unknown size and not as short objects
38        like 'int', 'void*' etc.  Since only addresses are used and never those
39        variable's values, the type used in a declaration is not important.
40
412003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
42
43        * configure.ac: Remove AC_CONFIG_AUX_DIR.
44
452003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
46
47        * netinet/in_chksum.c: Remove duplicate case to include
48        in_chksum_arm.c.
49
502003-02-20      Till Straumann <strauman@slac.stanford.edu>
51
52        PR 351/networking
53        * nfs/bootp_subr.c: Fix ridiculous leak in bootp and use
54        strdup_bootp_realloc() everywhere for sake of consistency.
55
562003-02-11      Mike Siers <mikes@poliac.com>
57
58        * rtems/rtems_glue.c: A small patch to the network daemon task
59        code.  I just added code to check the return value of
60        the rtems_bsdnet_event_receive function.  Only when
61        this function returns a SUCCESSFUL status, will the
62        event flags be checked.  This is more of a code cleanup issue
63        than a bug.  The patch will just ensure the ipintr() and
64        arpintr() functions are only called when a event is signaled.
65
662003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
67
68        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
69
702003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
71
72        * configure.ac: AC_PREREQ(2.57).
73
742003-02-06      Mike Siers <mikes@poliac.com>
75
76        PR 342/networking
77        * kern/uipc_mbuf.c: The RTEMS version of the m_copyback is changing
78        the m_len value of the mbuf.  I looked into the source from another
79        BSD system and the mbuf length is not changed inside this function.
80        The m_copyback function is only being used in the net/rtsock.c file.
81        So I think this problem is only visable under certain routing table
82        conditions. 
83
842003-02-05      Thomas Doerfler <Thomas.Doerfler@imd-systems.de>
85
86        PR 341/networking
87        * lib/ftpfs.c: Account for NULL at end of strings when malloc()'ing
88        memory.
89
902003-01-28      Joel Sherrill <joel@OARcorp.com>
91
92        * Makefile.am: Add kern/kern_sysctl.c to Makefile.am so networking
93        tests build. This was subsequently reported as PR337 before I
94        committed the fix.
95
962003-01-27      Till Straumann <strauman@SLAC.Stanford.edu>
97
98        * libc/getproto.c, libc/getprotoname.c: modification to call
99        getprotoent_static() if fopen() on /etc/protocols fails.
100
1012003-01-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
102
103        * netinet/tcp_subr.c: Add args to INP_INFO_RLOCK, INP_INFO_RUNLOCK,
104        INP_LOCK, INP_UNLOCK macros.
105        * netinet/udp_usrreq.c: Add args to INP_INFO_RLOCK, INP_INFO_RUNLOCK,
106        INP_LOCK, INP_UNLOCK macros.
107
1082003-01-03      Jitendra Vegiraju <jvegiraju@netscape.net>
109
110        * sys/queue.h: Fix alignment problem on ARM.
111
1122003-01-03      Chris Johns <cjohns@cybertec.com.au>
113
114        * Makefile.am: Added sys/linker_set.h
115        * kern/Makefile.am: Added kern_mib.c and kern_sysctl.c.
116        * kern/uipc_socket.c: OID changed from KERN_SOMAXCONN to KIPC_SOMAXCONN.
117        * kern/uipc_socket2.c: OID changed from KERN_MAXSOCKBUF to
118        KIPC_MAXSOCKBUF.
119        * net/if_ethersubr.c: FreeBSD 2.2.2 does not have a _net_link node
120        while 5.0 does.
121        * net/if_ppp.c: Removed the TEXT_SET define as these macros are
122        now implemented.
123        * net/rtsock.c: Enable sysctl support plus fix the bug with the
124        lastest FreeBSD sysctl header file.
125        * netinet/icmp_var.h: FreeBSD 2.2.2 does not have a _net_inet_icmp
126        node while 5.0 does.
127        * netinet/if_ether.c: FreeBSD 2.2.2 does not have a _net_link_ether
128        node while 5.0 does.
129        * netinet/igmp_var.h: FreeBSD 2.2.2 does not have a _net_inet_igmp
130        node while 5.0 does.
131        * netinet/in_pcb.c: Fixed the arguments to the sysctl call. Add
132        inp_gencnt and ipi_count. These are used when listing connections.
133        * netinet/in_pcb.h: Added counters to aid the listing of connections.
134        * netinet/in_var.h: Provide the _net_inet_ip and _net_inet_raw nodes.
135        * netinet/ip_fw.c: Disable the firewall sysctl calls.
136        * netinet/tcp_subr.c: Merge tcp_pcblist from the lastest FreeBSD source.
137        * netinet/tcp_var.h: Add structures needed by net-snmp to list
138        connections.
139        * netinet/udp_usrreq.c: Merged udp_pcblist from the lastest FreeBSD
140        source.
141        * netinet/udp_var.h: Added the sysctl id UDPCTL_PCBLIST. Used by
142        net-snmp.
143        * rtems_glue.c: Call sysctl_register_all when initialising the
144        network stack to register all the sysctl calls. These are in the
145        special sections and required an updated linker script.
146        * rtems/rtems_syscall.c: Add the sysctl call.
147        * sys/kernel.h: Use the lastest FreeBSD method of handling sysctl
148        structures.  This now held in the sys/linker_set.h file.
149        * sys/queue.h: This is from the lastest FreeBSD code with the circular
150        code merged back in as it is not used in the lastest FreeBSD kernel.
151        * sys/sysctl.h: The lastest sysctl. This was needed to use with the new
152        linker set method. The FreeBSD 2.2.2 version has asm hacks. The lastest
153        version of the FreeBSD does not have these hacks. It uses gcc attribute
154        directives.
155
1562002-12-18      Eric Norum <eric.norum@usask.ca>
157        * Makefile.am: Include netinet sources.
158
1592002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
160
161        * Makefile.am: Merge-in kern/Makefile.am, net/Makefile.am,
162        netinet/Makefile.am, netinet/Makefile.am, nfs/Makefile.am,
163        rtems/Makefile.am.
164        * kern/Makefile.am: Remove.
165        * net/Makefile.am: Remove.
166        * netinet/Makefile.am: Remove.
167        * nfs/Makefile.am: Remove.
168        * rtems/Makefile.am: Remove.
169        * wrapup/Makefile.am: Reflect changes above.
170        * configure.ac: Ditto.
171
1722002-12-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
173
174        * kern/Makefile.am: Remove C_O_FILES;
175        Don't let all-local depend on $OBJS)
176        * lib/Makefile.am: Ditto.
177        * libc/Makefile.am: Ditto.
178        * net/Makefile.am: Ditto.
179        * netinet/Makefile.am: Ditto.
180        * nfs/Makefile.am: Ditto.
181        * rtems/Makefile.am: Ditto.
182
1832002-11-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
184
185        * configure.ac: Fix package name.
186
1872002-11-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
188
189        * Makefile.am: Merge-in HEADER-handling from
190        net/Makefile.am, netinet/Makefile.am, nfs/Makefile.am.
191        * net/Makefile.am: Remove *_HEADERS.
192        * netinet/Makefile.am: Remove *_HEADERS.
193        * nfs/Makefile.am: Remove *_HEADERS.
194
1952002-11-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
196
197        * Makefile.am: Merge-in arpa/Makefile.am, machine/Makefile.am,
198        sys/Makefile.am, vm/Makefile.am.
199        Add . to SUBDIRS.
200        * arpa/Makefile.am: Remove.
201        * machine/Makefile.am: Remove.
202        * sys/Makefile.am: Remove.
203        * vm/Makefile.am: Remove.
204        * configure.ac: Reflect changes above.
205
2062002-11-06      Chris Johns <ccj@acm.org>
207
208        * sys/select.h: Add C++ to C external.
209
2102002-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
211
212        * kern/uipc_mbuf.c: Comment out m0 in m_copydata to suppress
213        warning.
214
2152002-11-01      Joel Sherrill <joel@OARcorp.com>
216
217        * ChangeLog: Corrected.
218
2192002-11-01      Eric Norum <eric.norum@usask.ca>
220
221        * nfs/bootp_subr.c, rtems/rtems_bsdnet.h, rtems/rtems_glue.c:
222        Till Straumann's patch (PR295) to use bootp option 129 to get
223        command line string.  Till Straumann's patch to change
224        inet_ntoa->inet_ntop.
225
2262002-10-31      Joel Sherrill <joel@OARcorp.com>
227
228        * libc/rcmd.c, netinet/in_cksum_arm.c: Removed warnings.
229
2302002-10-28      Joel Sherrill <joel@OARcorp.com>
231
232        * Pass to eliminate warnings.
233        * kern/uipc_mbuf.c: Conditional SYSINIT() usage on __rtems__.
234        Fix return statement without a value.
235        * lib/ftpfs.c: read and write filesystem routines return ssize_t.
236        * lib/syslog.c: Add include of <string.h> to eliminate warning.
237        * lib/tftpDriver.c: read and write filesystem routines return ssize_t.
238        * libc/gethostbydns.c: Prototype abort().
239        * libc/inet_ntoa.c: Prototype strcpy().
240        * libc/rcmd.c: Add include of <sys/select.h>
241        * net/if_loop.c: Turn token at end of endif to comment.
242        * net/rtsock.c, nfs/bootp_subr.c:  Conditional SYSINIT() usage
243        on __rtems__.
244        * rtems/rtems_bootp.c: Add include of <rtems/rtems_bsdnet_internal.h>.
245        * rtems/rtems_bsdnet_internal.h: Added prototypes for memcpy() and
246        memset() since the BSD code tries to avoid using libc .h files
247        since it is used to being in the kernel.
248        * rtems/rtems_syscall.c: read and write filesystem routines
249        return ssize_t.
250
2512002-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
252
253        * configure.ac: Add nostdinc to AM_INIT_AUTOMAKE.
254
2552002-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
256
257        * Makefile.am: Remove bogus reference to CHANGELOG.
258
2592002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
260
261        * .cvsignore: Reformat.
262        Add autom4te*cache.
263        Remove autom4te.cache.
264
2652002-10-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
266
267        * net/if_ethersubr.c: Add comments to #endif NETATALK to stop
268        gcc from complaining.
269
2702002-10-07      Eric Norum <eric.norum@usask.ca>
271
272        * netinet/tcp_var.h: Corrected typo in ARM alignment patch which
273        broke all other ports.
274
2752002-10-04      Jay Monkman <jtm@smoothsmoothie.com>
276
277        * netinet/in_cksum.c, netinet/ip_icmp.h, netinet/ip_input.c,
278        netinet/tcp_input.c, netinet/tcp_subr.c, netinet/tcp_var.h,
279        sys/queue.h: Address alignment requirements for the ARM.
280
2812002-10-04      Jay Monkman <jtm@smoothsmoothie.com>
282
283        * rtems/rtems_glue.c: Add IP aliasing ioctls SIOCAIFADDR and
284        SIOCDIFADDR.
285
2862002-10-02      Joel Sherrill <joel@OARcorp.com>
287
288        * kern/uipc_socket.c: Make sure that small non-zero delays work.
289        Suggested cleanup from Eric Norum.
290
2912002-10-02      Eric Norum <eric.norum@usask.ca>
292
293        * rtems/mkrootfs.c: As part of PR283, remove redundant code that
294        creates /etc/passwd and /etc/group.
295
2962002-09-16      Joel Sherrill <joel@OARcorp.com>
297
298        * netinet/Makefile.am, netinet/udp_usrreq.c: Back off some of
299        the IP_FORWARD patch as it appears to not compile in the
300        current tree.
301
3022002-09-14      Joel Sherrill <joel@OARcorp.com>
303
304        * kern/uipc_socket.c: Fix case on SO_RCVTIMEO and SO_SNDTIMEO where
305        conversion into ticks can result in a 0 ticks timeout which is
306        the same as requesting no timeout.  Reported by Sergei Organov
307        <osv@javad.ru>.
308
3092002-09-14      Vyacheslav V. Burdjanadze <wr@zelax.ru>
310
311        * kern/uipc_mbuf.c, sys/mbuf.h, netinet/udp_usrreq.c: Add
312        optional UDP broadcast forwarding support.
313        * netinet/Makefile.am: Defined FORWARD_PROTOCOL to enabled UDP
314        broadcast forwarding.
315
3162002-09-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
317
318        * netinet/in_cksum.c: #include <string.h> for puts in generic
319        routines.
320
3212002-08-20      Eric Norum <eric.norum@usask.ca>
322
323        * rtems/rtems_glue.c: Per PR270, the BSD network code expects that
324        the value of the number of seconds since boot is non-zero.  The
325        RTEMS network initialization code assures this by waiting for a
326        second.  A more efficient technique is to simply wait until the
327        number of seconds since boot is non-zero.
328
3292002-08-09      Joel Sherrill <joel@OARcorp.com>
330
331        * libc/getservent.c: Per PR265, add  #include <netinet/in.h> for
332        ntohl() function.
333
3342002-08-07      Joel Sherrill <joel@OARcorp.com>
335
336        * netinet/in.h: Per PR263, added include of <machine/endian.h>
337        to <netinet/in.h> so it includes prototypes of ntohl() family
338        of routines.
339
3402002-08-01      Joel Sherrill <joel@OARcorp.com>
341
342        * machine/param.h, sys/syslimits.h: In the continued effort to
343        eliminate .h conflicts between newlib and RTEMS, these were moved to
344        newlib.
345        * machine/Makefile.am, sys/Makefile.am: Reflect above.
346
3472002-08-01      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
348
349        * wrapup/Makefile.am: Don't install.
350
3512002-07-30      Joel Sherrill <joel@OARcorp.com>
352
353        * sys/param.h: Removed as a simpler version of this file is
354        now part of the RTEMS newlib support.
355        * sys/Makefile.am: Modified to reflect above. 
356
3572002-07-30      Joel Sherrill <joel@OARcorp.com>
358
359        * machine/types.h: Removed as a simpler version of this file is
360        now part of the RTEMS newlib support.
361        * machine/Makefile.am, machine/endian.h, nfs/bootp_subr.c,
362        rtems/rtems_bsdnet_internal.h, sys/Makefile.am, sys/systm.h:
363        Minor modifications to use the simpler machine/types.h.  Mostly
364        more complete sets of #include's to account for machine/types.h
365        no longer doing this.
366
3672002-07-30      Jay Monkman <jtm@smoothsmoothie.com>
368
369        * netinet/in_cksum.c, netinet/in_cksum_arm.c: Added ARM in_cksum
370        support.
371
3722002-07-24      Joel Sherrill <joel@OARcorp.com>
373
374        * sys/select.h: Add a prototype of select() to avoid warnings.
375        In particular a C++ application using select() required a prototype.
376
3772002-07-24      Joel Sherrill <joel@OARcorp.com>
378
379        * Makefile.am, libc/res_send.c: Do not install or use <poll.h>
380        since RTEMS does not support it.
381
3822002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
383
384        * kern/Makefile.am: Use .$(OBJEXT) instead of .o.
385        * lib/Makefile.am: Ditto.
386        * libc/Makefile.am: Ditto.
387        * net/Makefile.am: Ditto.
388        * netinet/Makefile.am: Ditto.
389        * nfs/Makefile.am: Ditto.
390        * rtems/Makefile.am: Ditto.
391        * wrapup/Makefile.am: Ditto.
392
3932002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
394
395        * kern/Makefile.am: Eliminate LIBNAME.
396        * lib/Makefile.am: Ditto.
397        * libc/Makefile.am: Ditto.
398        * net/Makefile.am: Ditto.
399        * netinet/Makefile.am: Ditto.
400        * nfs/Makefile.am: Ditto.
401        * rtems/Makefile.am: Ditto.
402        * wrapup/Makefile.am: Use project_libdir instead of
403        $(PROJECT_RELEASE)/lib.
404
4052002-07-17      Jay Monkman <jtm@smoothsmoothie.com>
406
407        * netinet/in.h, netinet/ip.h, netinet/ip_var.h, netinet/tcp.h:
408        Modified to added packed attribute.o
409
4102002-07-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
411
412        * configure.ac: RTEMS_TOP(../..).
413
4142002-07-01      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
415
416        * configure.ac: Remove RTEMS_PROJECT_ROOT.
417
4182002-06-27      Thomas Doerfler <Thomas.Doerfler@imd-systems.de>
419
420        * Addition of a ftp client filesystem, comparable to the tftp one.
421        * lib/ftpfs.c, rtems/ftpfs.h: New files.
422        * lib/Makefile.am, rtems/Makefile.am: Modified to reflect above.
423
4242002-06-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
425
426        * configure.ac: Use AC_CONFIG_AUX_DIR(../..).
427        Add AC_PROG_RANLIB.
428
4292002-06-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
430
431        * wrapup/Makefile.am: Don't preinstall libnetworking.a.
432
4332002-06-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
434
435        * Makefile.am: Remove commented out net-apps.
436
4372002-06-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
438
439        * arpa/Makefile.am: Include $(top_srcdir)/../automake/*.am.
440        * kern/Makefile.am: Include $(top_srcdir)/../automake/*.am.
441        * Makefile.am: Include $(top_srcdir)/../automake/*.am.
442        Use ../aclocal.
443        * lib/Makefile.am: Include $(top_srcdir)/../automake/*.am.
444        * libc/Makefile.am: Include $(top_srcdir)/../automake/*.am.
445        * machine/Makefile.am: Include $(top_srcdir)/../automake/*.am.
446        * net/Makefile.am: Include $(top_srcdir)/../automake/*.am.
447        * netinet/Makefile.am: Include $(top_srcdir)/../automake/*.am.
448        * nfs/Makefile.am: Include $(top_srcdir)/../automake/*.am.
449        * rtems/Makefile.am: Include $(top_srcdir)/../automake/*.am.
450        * sys/Makefile.am: Include $(top_srcdir)/../automake/*.am.
451        * vm/Makefile.am: Include $(top_srcdir)/../automake/*.am.
452        * wrapup/Makefile.am: Include $(top_srcdir)/../automake/*.am.
453
4542002-06-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
455
456        * rtems/Makefile.am: include multilib.am instead of RTEMS_BSP.cfg.
457
4582002-05-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
459
460        * configure.ac: Remove RTEMS_CHECK_POSIX_API.
461          Remove RTEMS_ENABLE_POSIX.
462          Remove RTEMS_CHECK_CUSTOM_BSP.
463          Remove RTEMS_ENABLE_POSIX.
464
4652002-05-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
466
467        Relocate c/src/libnetworking.
468        * Makefile.am: Reflect moval.
469        * machine/Makefile.am: Ditto.
470        * net/Makefile.am: Ditto.
471        * lib/Makefile.am: Ditto.
472        * netinet/Makefile.am: Ditto.
473        * vm/Makefile.am: Ditto.
474        * libc/Makefile.am: Ditto.
475        * sys/Makefile.am: Ditto.
476        * arpa/Makefile.am: Ditto.
477        * nfs/Makefile.am: Ditto.
478        * kern/Makefile.am: Ditto.
479        * rtems/Makefile.am: Ditto.
480        * configure.ac: Dittp.
481        * wrapup/Makefile.am: Ditto. Remove references to networking apps.
482
4832002-05-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
484
485        * rtems_telnetd/pty.c: Remove bsp.h. Include <rtems/bspIo.h>.
486
4872002-05-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
488
489        * rtems/mkrootfs.c: Add (relocated from libmisc/rootfs).
490        * rtems/mkrootfs.h: Ditto.
491        * rtems/Makefile.am: Reflect changes above.
492
4932002-05-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
494
495        * sys/ioctl.h: Remove.
496        * sys/sockio.h: Remove.
497        * sys/filio.h: Remove.
498        * sys/Makefile.am: Reflect changes above.
499
5002001-05-14      Joel Sherrill <joel@OARcorp.com>
501
502        * ChangeLog: Corrected -- entry should have been in libchip.
503 
5042002-05-01      Eric Norum <eric.norum@usask.ca>
505
506        * machine/in_cksum.h: Per PR200 fix multi-line inline assembly
507        to satisfy gcc 3.1 and newer.
508
5092002-04-26      Eric Norum <eric.norum@usask.ca>
510
511        * netinet/in_cksum_i386.c: Add volatile so the more agressive
512        optimization in gcc 3.1 does not reorder things.
513
5142002-04-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
515
516        * pppd/utils.c: Adapt to gcc-3.x.
517
5182002-04-11      Chris Johns <ccj@acm.org>
519
520        * c/src/libnetworking/rtems/rtems_bsdnet.h: To address PR59, added
521        the drv_ctrl driver control block field to the ifconfig network driver
522        structure. This field is needed by the i82586 driver which was ported
523        from NetBSD as it had better hardware abstraction.
524
5252002-04-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
526
527        * ChangeLog: Fix dates.
528
5292002-03-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
530
531        * libc/rcmd.c: Replace __rtems w/ __rtems__.
532
5332002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
534
535        * configure.ac:
536        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
537        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
538        * arpa/Makefile.am: Remove AUTOMAKE_OPTIONS.
539        * kern/Makefile.am: Remove AUTOMAKE_OPTIONS.
540        * Makefile.am: Remove AUTOMAKE_OPTIONS.
541        * lib/Makefile.am: Remove AUTOMAKE_OPTIONS.
542        * libc/Makefile.am: Remove AUTOMAKE_OPTIONS.
543        * machine/Makefile.am: Remove AUTOMAKE_OPTIONS.
544        * net/Makefile.am: Remove AUTOMAKE_OPTIONS.
545        * netinet/Makefile.am: Remove AUTOMAKE_OPTIONS.
546        * nfs/Makefile.am: Remove AUTOMAKE_OPTIONS.
547        * pppd/Makefile.am: Remove AUTOMAKE_OPTIONS.
548        * rtems/Makefile.am: Remove AUTOMAKE_OPTIONS.
549        * rtems_servers/Makefile.am: Remove AUTOMAKE_OPTIONS.
550        * rtems_telnetd/Makefile.am: Remove AUTOMAKE_OPTIONS.
551        * rtems_webserver/Makefile.am: Remove AUTOMAKE_OPTIONS.
552        * sys/Makefile.am: Remove AUTOMAKE_OPTIONS.
553        * vm/Makefile.am: Remove AUTOMAKE_OPTIONS.
554        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
555
5562002-03-27      Thomas.Doerfler@imd-systems.de
557
558        * PR144
559        * nfs/bootp_subr.c bootpc_init(): Performs a write to memory address
560        0 when called for the first time. This is done when trying to clear
561        the variable "dhcp_hostname".
562
5632002-03-27      Ilya Alexeev <ilya@continuum.ru>
564
565        * PR162
566        * net/if_ppp.c ppp_txdaemon(), net/if_pppvar.h pppstart(): Local
567        variables must not be used in a device write routines.  Now
568        ppp_softc structure have own character for writing to device
569        (sc_outchar).  I think that converting local variables to static
570        is not a right solution, because problems will occur in the case
571        of two or more ppp instances.
572        * net/ppp_tty.c pppstart(): Type of the ioffset variable must be
573        u_long, otherwise in the case of the big output packet endless
574        loop may occur.
575
5762002-03-21      Ilya Alexeev <ilya@continuum.ru>
577
578        * net/if_ppp.c, net/ppp_tty.c: Initial preparations for multiple
579        PPPD connections.
580
5812001-03-20      Till Straumann <strauman@SLAC.Stanford.EDU>
582
583        * PR158
584        * libc/rcmd.c, libc/rcmd.c: Enable the rcmd() library call by
585        commenting out the parts that deal with signals.  This enables
586        RTEMS to 'rsh' command to a server connecting fd to remote stdio.
587        The 'server-side' parts of this file which deal with authentication
588        are disabled since they are not needed.
589
5902002-02-27      Ilya Alexeev <ilya@continuum.ru>
591
592        * net/if_ppp.c, pppd/auth.c, pppd/chat.c, pppd/pppd.h,
593        pppd/sys-rtems.c: Add server with pap-authorization
594        capabilities as well as eliminate some warnings.
595
5962002-02-27      Eric Norum <eric.norum@usask.ca>
597
598        * net/radix.c: Properly handle fetching the default route when there
599        is no route.  This was a bug in the original FreeBSD code and this
600        fix is from an updated version of their code.
601
6022002-02-01      Mike Siers <mikes@poliac.com>
603
604        * pppd/rtemspppd.c (rtems_pppd_disconnect): Modified to avoid bringing
605        the link down too fast.
606        NOTE: Mike reports successfully running at 56K baud on a direct link.
607
6082002-01-31      Mike Siers <mikes@poliac.com>
609
610        * pppd/rtemsdialer.h: New file missed in previous commit.
611
6122002-01-31      Mike Siers <mikes@poliac.com>
613
614        * Nice Update of PPPD support which eliminates the
615        requiremetn that drivers be in the termios TASK_DRIVEN mode.
616        Mike did significant testing and reports that it seems to be
617        more stable and handle larger packets better.  This patch
618        replaces the termios tasks with more general pppd network
619        driver tasks.  The functions pppinput() and pppstart() get
620        called from the interrupt service routine.
621        * Makefile.am, configure.ac, net/Makefile.am, net/bpf.h,
622        net/ethernet.h, net/if.c, net/if.h, net/if_arp.h, net/if_dl.h,
623        net/if_ethersubr.c, net/if_llc.h, net/if_loop.c, net/if_ppp.h,
624        net/if_pppvar.h, net/if_types.h, net/netisr.h, net/ppp-comp.h,
625        net/ppp_defs.h, net/pppcompress.h, net/radix.c, net/radix.h,
626        net/raw_cb.c, net/raw_cb.h, net/raw_usrreq.c, net/route.c,
627        net/route.h, net/rtsock.c, pppd/Makefile.am, pppd/README,
628        pppd/STATUS, pppd/auth.c, pppd/cbcp.c, pppd/ccp.c, pppd/ccp.h,
629        pppd/chap.c, pppd/chap.h, pppd/chap_ms.c, pppd/chap_ms.h,
630        pppd/chat.c, pppd/demand.c, pppd/fsm.c, pppd/fsm.h, pppd/ipcp.c,
631        pppd/ipcp.h, pppd/ipxcp.c, pppd/ipxcp.h, pppd/lcp.c, pppd/lcp.h,
632        pppd/magic.c, pppd/magic.h, pppd/options.c, pppd/patchlevel.h,
633        pppd/pathnames.h, pppd/pppd.8, pppd/pppd.h, pppd/rtemsmain.c,
634        pppd/rtemspppd.c, pppd/rtemspppd.h, pppd/sys-rtems.c, pppd/upap.c,
635        pppd/upap.h, pppd/utils.c, pppd/example/README,
636        pppd/example/netconfig.h, wrapup/Makefile.am: Modified.
637        * net/bsd-comp.c, net/if_ppp.c, net/ppp-deflate.c, net/ppp.h,
638        net/ppp_tty.c, net/pppcompress.c, net/zlib.c, net/zlib.h: New file.
639        * modem/, modem/.cvsignore, modem/Makefile.am, modem/ppp.c,
640        modem/ppp.h, modem/ppp_tty.c, modem/pppcompress.c: Subdirectory removed.
641
6422002-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
643
644        * rtems_telnetd/pty.c: Move config.h to were it belongs.
645        Remove printf (Reported by Till Straumann
646        <strauman@SLAC.Stanford.EDU>).
647
6482002-02-16      Eric Norum <eric.norum@usask.ca>
649
650        * lib/tftpDriver.clib/tftpDriver.c: Fix TFTP block number checking.
651
6522002-02-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
653
654        * pppd/sys-rtems.c: Remove unused variable status from
655        dodefaultroute.
656
6572002-02-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
658
659        * lib/tftpDriver.c: Remove set_errno_and_return_minus_one, include
660        <rtems/seterr.h>.
661
662
6632001-12-18      Eric Norum <eric.norum@usask.ca>
664
665        * lib/tftpDriver.c: Allow chdir() to work on TFTP `directories'
666        (path names with a / at the end) while disallowing open() operations
667        on TFTP `directories'.
668
6692001-12-07      Eric Norum <eric.norum@usask.ca>
670
671        * lib/tftpDriver.c: Restore write capability.
672
6732001-11-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
674
675        * arpa/Makefile.am: Remove stray lines.
676
6772001-10-18      Eric Norum <eric.norum@usask.ca>
678
679        * lib/tftpDriver.c: Properly handles ../ components in chdir() and
680        open() operations within the TFTP file system.
681
6822001-10-12      Mike Siers <mikes@poliac.com>
683
684        * Update to stable working state.  Congratulations Mike! :)
685        * modem_example: Directory removed.
686        * modem_example/16550.h, modem_example/README, modem_example/modem.c,
687        modem_example/modem.h, modem_example/ppp.c, modem_example/ppp.h,
688        modem_example/pppcompress.c: Files removed.
689        * pppd/example/pppd.options: New file.
690        * pppd/README, pppd/STATUS, pppd/cbcp.c, pppd/cbcp.h, pppd/chat.c,
691        pppd/pppd.h, pppd/rtemsmain.c: Updated.
692
6932001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
694
695        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
696        * configure.in: Remove.
697        * configure.ac: New file, generated from configure.in by autoupdate.
698
6992001-09-27      Eric Norum <eric.norum@usask.ca>
700
701        * lib/tftpDriver.c: Add limited chdir() support to the TFTP
702        filesystem.
703
7042001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
705
706        * machine/Makefile.am: Use 'PREINSTALL_FILES ='.
707        * net/Makefile.am: Use 'PREINSTALL_FILES ='.
708        * netinet/Makefile.am: Use 'PREINSTALL_FILES ='.
709        * vm/Makefile.am: Use 'PREINSTALL_FILES ='.
710        * pppd/Makefile.am: Use 'PREINSTALL_FILES ='.
711        * sys/Makefile.am: Use 'PREINSTALL_FILES ='.
712        * rtems_servers/Makefile.am: Use 'PREINSTALL_FILES ='.
713        * arpa/Makefile.am: Use 'PREINSTALL_FILES ='.
714        * nfs/Makefile.am: Use 'PREINSTALL_FILES ='.
715        * rtems_webserver/Makefile.am: Use 'PREINSTALL_FILES ='.
716        * rtems/Makefile.am: Use 'PREINSTALL_FILES ='.
717        * rtems_telnetd/Makefile.am: Use 'PREINSTALL_FILES ='.
718
7192001-09-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
720
721        * Makefile.am: Use PREINSTALL_FILES = to make automake-1.5 happy.
722
7232001-09-19      Eric Norum <eric.norum@usask.ca>
724
725        * lib/tftpDriver.c: Add some debugging capability.
726
7272001-09-19      Chris Johns <ccj@acm.org>
728
729        * nfs/bootp_subr.c, rtems/rtems_bootp.c, rtems/rtems_bsdnet.h,
730        rtems/rtems_bsdnet_internal.h Added support for populating the
731        initial "root" filesystem with information obtained via the DHCP
732        response.
733
7342001-08-16      Mike Siers <mikes@poliac.com>
735
736        * pppd/STATUS: Updated by Joel based upon email from Mike.
737        * pppd/cbcp.c, pppd/cbcp.h: Readded files.  These support callback
738        functionality that has not even been compiled under RTEMS yet.
739
7402001-08-16      Joel Sherrill <joel@OARcorp.com>
741
742        * pppd/example/Makefile: Removed.
743        * pppd/example/Makefile-user: Added was Makefile.  Renamed to
744        avoid bootstrap -c clobbering it.
745
7462001-08-16      Mike Siers <mikes@poliac.com>
747
748        * Update of PPPD to 2.3.11 from 2.3.5 and addition of an example
749        application.  Mike's notes on the modifications:
750           - renamed error() function because of namespace problems
751           - removed calls to the exit() funciton
752           - removed extra files from the pppd source directory
753           - defined pppd task constant values in rtemspppd.h
754           - modifyied example code to get actual tick per second value
755           - placed the pppd 2.3.11 man page file (pppd.8) into the pppd
756           directory
757        * pppd/cbcp.c, pppd/cbcp.h, pppd/main.c, pppd/ppp_tty.c,
758        pppd/pppmain.c, pppd/rtems-ppp.c, pppd/rtems-ppp.c: Deleted.
759        * pppd/pppd.8, pppd/rtemsmain.c, pppd/rtemspppd.c, pppd/rtemspppd.h,
760        pppd/sys-rtems.c, pppd/utils.c, pppd/example/Makefile,
761        pppd/example/README, pppd/example/init.c, pppd/example/netconfig.h,
762        pppd/example/ppp.conf, pppd/example/pppdapp.c, pppd/example/system.h:
763        New files.
764        * modem/ppp_tty.c, net/if_ppp.h, pppd/Makefile.am, pppd/README,
765        pppd/STATUS, pppd/auth.c, pppd/ccp.c, pppd/ccp.h, pppd/chap.c,
766        pppd/chap.h, pppd/chap_ms.c, pppd/chap_ms.h, pppd/chat.c,
767        pppd/demand.c, pppd/fsm.c, pppd/fsm.h, pppd/ipcp.c, pppd/ipcp.h,
768        pppd/ipxcp.c, pppd/ipxcp.h, pppd/lcp.c, pppd/lcp.h, pppd/magic.c,
769        pppd/magic.h, pppd/options.c, pppd/patchlevel.h,
770        pppd/pathnames.h, pppd/pppd.h, pppd/upap.c, pppd/upap.h: Modified.
771
7722001-08-16      Joel Sherrill <joel@OARcorp.com>
773
774        * rtems_telnetd/.cvsignore: New file.
775
7762001-08-09      Fernando-Ruiz Casas <correo@fernando-ruiz.com>
777
778        * Makefile.am, configure.in, rtems_servers/Makefile.am,
779        rtems_servers/telnetd.c, rtems_servers/telnetd.h,
780        rtems_telnetd/Makefile.am, rtems_telnetd/README, rtems_telnetd/icmds.c,
781        rtems_telnetd/pty.c, rtems_telnetd/pty.h, rtems_telnetd/telnetd.c,
782        rtems_telnetd/telnetd.h, wrapup/Makefile.am:
783          - pty and telnetd have a new subdir rtems_telnetd to avoid
784            the side effect when ftpd change.
785          - the tcp/ip stats have been implemented into icmds.c and
786            started when telnetd daemon is started.
787        * rtems_servers/telnetd.c, rtems_servers/telnetd.h: Removed.
788        * rtems_telnetd: New directory.
789        * rtems_telnetd/Makefile.am, rtems_telnetd/README,
790        rtems_telnetd/icmds.c, rtems_telnetd/pty.c, rtems_telnetd/pty.h,
791        rtems_telnetd/telnetd.c, rtems_telnetd/telnetd.h: New files.
792
7932001-05-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
794
795        * rtems_servers/Makefile.am: Deleted blank lines.
796
7972001-06-14      Joel Sherrill <joel@OARcorp.com>
798
799        * rtems_servers/telnetd.c, shell/telnetd.h: Moved from libmisc/shell
800        so the network stack to address network depenendency.
801        * rtems_servers/Makefile.am: Modified to reflect above.
802
8032001-05-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
804
805        * libc/Makefile.am: Remove -D__STRICT_ANSI__.
806
8072001-04-24      Eric Norum <eric.norum@usask.ca>
808
809        * lib/rtems_bsdnet_ntp.c: Modifications to make the RTEMS NTP
810        synchronization a little more robust -- no NTP daemon yet, but
811        at least it trys a little harder when the primary NTP server is down.
812
8132001-04-20  Radzislaw Galler  <rgaller@et.put.poznan.pl>
814
815        * modem/ppp.c, pppd/main.c, pppd/pppmain.c, pppd/rtems-ppp.c,
816        pppd/modem_example/modem.c, pppd/modem_example/ppp.c: Translated
817        Polish comments and other strings into English
818        * pppd/STATUS: updated to reflect the changes
819
8202001-04-20      Jake Janovetz <janovetz@uiuc.edu>
821
822        * rtems_servers/ftpd.c: Correct argument so hooks work again.
823
8242001-03-15      Ralf Corsepius <corsepius@faw.uni-ulm.de>
825
826        * include/.cvsignore: Remove dangling file.
827
8282001-01-31        Sergei Organov <osv@javad.ru>
829
830        * rtems_servers/ftp.d: Following changes:
831          - Hacks with current dir and root dir removed in favor of new libio
832            support for task-local current and root directories.
833          - Bug in `close_data_socket()' introduced by previous change fixed.
834          - `command_pasv()' changed to set timeout on socket we are listening
835            on and code fixed to don't close socket twice on error.
836          - `serr()' changed to clear `errno'.
837          - `data_socket()' changed to clear `errno' before `bind()'.
838          - `session()' changed to clear `errno' before processing session.
839          - `close_data_socket()' fixed to close both active and passive sockets
840          - Initialize info->data_socket to -1 in `daemon()'
841          - Initialize `fname' to empty string  in `exec_command()'
842
8432001-02-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
844
845        * Makefile.am, arpa/Makefile.am, machine/Makefile.am, net/Makefile.am,
846        netinet/Makefile.am, nfs/Makefile.am, rtems/Makefile.am,
847        rtems_servers/Makefile.am, rtems_webserver/Makefile.am,
848        sys/Makefile.am, vm/Makefile.am:
849        Apply include_*HEADERS instead of H_FILES.
850        * include/Makefile.am: Remove.
851        * Makefile.am: Add handling of *.h files.
852        * configure.in: Remove include/Makefile.
853
8542001-01-25      Eric Norum <eric.norum@usask.ca>
855
856        * lib/tftpDriver.c: Reduce first timeout interval.  This
857        improves throughput on systems which are dropping packets. 
858        Only the first timeout is reduced.  This keeps the number
859        of extra packets down on networks that are very busy and
860        dropping lots of packets.
861
8622001-01-24      Sergei Organov <osv@javad.ru>
863
864        * rtems_servers/ftpd.c, rtems_servers/ftpd.h: Major enhancements
865        as listed below:
866          - Timeouts on sockets implemented. 'idle' field added to
867            configuration. No timeout by default to keep backward compatibility.
868            Note: SITE IDLE command not implemented yet.
869          - Basic global access control implemented. 'access' field added to
870            configuration. No access limitations by default to keep backward
871            compatibility.
872          - Anchor data socket for active mode (using self IP and port 20.)
873          - Fixed default data port support (still not tested).
874          - Don't allow IP address different from originating host in
875            PORT command to improve security.
876          - Fixed bug in MDTM command.
877          - Check for correctness of parsing of argument in command_port().
878          - Fixed squeeze_path() to don't allow names like 'NAME/smth' where
879            'NAME' is not a directory.
880          - Command parsing a little bit improved: command names are now
881            converted to upper-case to be more compatible with RFC (command
882            names are not case-sensitive.)
883          - Reformat comments so that they have RTEMS look-and-feel.
884          - Fixed DELE, SITE CHMOD, RMD, MKD broken by previous changes
885          - True ASCII mode implemented (doesn't work for hooks and /dev/null)
886          - Passive mode implemented, PASV command added.
887          - Default port for data connection could be used (untested, can't find
888            ftp client that doesn't send PORT command)
889          - SYST reply changed to UNIX, as former RTEMS isn't registered name.
890          - Reply codes reviewed and fixed.
891
8922001-01-12      Sergei Organov <osv@javad.ru>
893
894        * rtems_servers/ftpd.c, rtems_servers/ftpd.h: Major enhancements
895        as listed below:
896            - use pool of pre-created threads to handle sessions instead of
897              creating/deleting threads on the fly
898            - LIST output is now similar to what "/bin/ls -al" would output,
899              thus FTP clients such Netscape are happy with it.
900            - LIST NAME now works (both for files and directories)
901            - added support for NLST, CDUP, and MDTM FTP commands to make
902              more FTP clients happy
903            - keep track of CWD for every session separately
904            - ability to specify root directory name for FTPD in configuration
905              table. FTPD will then create illusion for FTP clients that this
906              is actually root directory.
907            - ignore options sent in commands, thus LIST -al FILE works and
908              doesn't try to list "-al" directory.
909            - buffers are allocated on stack instead of heap where possible to
910              eliminate malloc/free calls (avoid possible heap fragmentation
911              troubles).
912            - drop using of task notepad to pass parameters - use function
913              arguments instead
914            - use snprintf() instead of sprintf() as the latter is unsafe
915            - use of PF_INET in socket() instead of AF_INET
916
917            Here are ftp clients I've tried new FTPD with (all of them
918            running on Debian GNU/Linux 2.2):
919
920                 Lftp 2.1.10
921                 NcFTP 2.4.3
922                 Netscape 4.75
923                 ftp
924                 mc 4.5.49
925
9262001-01-02      Joel Sherrill <joel@OARcorp.com>
927
928        * CHANGELOG: Removed.
929        * README: Merged CHANGELOG contents as initial changes.
930
9312000-12-14      Eric Norum <eric.norum@usask.ca>
932
933        * lib/tftpDriver.c: Added write capability.
934
9352000-12-08      Joel Sherrill <joel@OARcorp.com>
936
937        * libc/linkaddr.c: Initialized variable to remove warning.
938        * modem/ppp.c, modem/ppp_tty.c: Made numerous variable declarations
939        conditional on PPP_COMPRESS and PPP_FILTER.  Commented out variables
940        that were not used because the code using them was commented out.
941        Removed totally unused variables.
942        * modem/pppcompress.c: Added parentheses to avoid warnings.
943        * pppd/pppmain.c: Removed numerous warnings.
944
9452000-11-30      Joel Sherrill <joel@OARcorp.com>
946
947        * modem/ppp_tty.c: Changed to include <rtems/termiostypes.h> since
948        that is an RTEMS specific header file.
949
9502000-11-30      Joel Sherrill <joel@OARcorp.com>
951
952        * sys/ttycom.h: Moved to lib/include/sys.
953        * Makefile.am: Modified to reflect above.
954
9552000-11-27      Joel Sherrill <joel@OARcorp.com>
956
957        * libc/res_init.c: Fix typo - adding missing # on include.
958
9592000-11-25      Eric Norum <eric.norum@usask.ca>
960
961        * libc/res_init.c: Move include to avoid compiler dumping core.
962
9632000-11-25  Antti P Miettinen  <antti.p.miettinen@nokia.com>
964
965        * wrapup/Makefile.am: Added modem subdir.
966        * configure.in, Makefile.am: Added modem subdir.
967        * net/Makefile.am: Added if_pppvar.h, pppcompress.h.
968        * pppd/Makefile.am: Added pppmain.c (which needs work).
969        * pppd/chat.c, pppd/fsm.c, pppd/fsm.h, pppd/ipxcp.c, pppd/main.c,
970        pppd/ppp_tty.c, pppd/upap.c: Changes from Thomas Doerfler
971        <Thomas.Doerfler@imd-systems.de> and cosmetic changes by me.
972        Actually main.c and ppp_tty.c should be scratched. The modem
973        subdir has the real ppp_tty.c and the real pppd main is in pppmain.c.
974
9752000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
976
977        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
978
9792000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
980
981        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
982
9832000-10-30      Joel Sherrill <joel@OARcorp.com>
984
985        * POSIX include files merged into newlib.  This resulted in
986        some definitions moving to other files and thus some secondary
987        effects in RTEMS source code.
988        * machine/types.h: Added _CLOCKID_T_ and _TIMER_T_ to be in sync
989        with newlib's <machine/types.h>.
990        * rtems/rtems_bsdnet_internal.h: newlib now includes definition
991        of struct itimerval in <sys/time.h>.
992
9932000-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
994
995        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
996        Switch to GNU canonicalization.
997
9982000-10-19  Antti P Miettinen  <anmietti@trshp.ntc.nokia.com>
999
1000        * lib/tftpDriver.c: add comments to handlers struct function pointers.
1001        * rtems/rtems_glue.c: move pointer arithmetic to be _after_
1002        pointer has been checked against NULL.
1003
10042000-10-18       Chris Johns <ccj@acm.org>
1005
1006        * pppd/ipxcp.c: Fixed a typo.
1007
10082000-09-28      Joel Sherrill <joel@OARcorp.com>
1009
1010        * rtems_webserver/Makefile.am, rtems_webserver/base64.c,
1011        rtems_webserver/base64.c: Renamed base64.c to wbase64.c.
1012        * rtems_webserver/sock.c: Added file missed in merger.
1013
10142000-09-22      Joel Sherrill <joel@OARcorp.com>
1015
1016        * machine/types.h, pppd/pppd.h, rtems/rtems_bsdnet_internal.h,
1017        rtems_webserver/webmain.c: machine/types.h  should not have
1018        included rtems.h.  It is now including precisely the
1019        least amount of low level, yet portable .h files to get
1020        the basic RTEMS types defined.  This rippled into other
1021        files since rtems_bsdnet_internal.h used machine/types.h to include
1022        rtems.h.
1023
10242000-09-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1025
1026        * ChangeLog: Cleanup.
1027
10282000-09-05      Joel Sherrill <joel@OARcorp.com>
1029
1030        * rtems/rtems_syscall.c: Changed from O_NONBLOCK to internal
1031        RTEMS_LIBIO_FLAGS_NO_DELAY to avoid O_NONBLOCK/O_NDELAY confusion
1032        and to work with the converted flags.
1033
10342000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1035
1036        * kern/Makefile.am, lib/Makefile.am, libc/Makefile.am,
1037        net/Makefile.am, netinet/Makefile.am, nfs/Makefile.am,
1038        pppd/Makefile.am, rtems/Makefile.am, rtems_servers/Makefile.am,
1039        rtems_webserver/Makefile.am, wrapup/Makefile.am: Include compile.am
1040
10412000-09-01      Rosimildo daSilva <rdasilva@connecttel.com>
1042
1043        * emfdb.c: Removed stray semi-colon.  Reported on GoAhead
1044        mailing lists by Jim Rudnicki <jdrudnicki@yahoo.com>
1045
10462000-08-31      Joel Sherrill <joel@OARcorp.com>
1047
1048        * Merged version 2.1 of GoAhead webserver.  This update
1049        was submitted by Antti P Miettinen <antti.p.miettinen@nokia.com>.
1050        * NOTES, base64.c, ejIntrn.h, emfdb.c, emfdb.h, md5.h, md5c.c,
1051        um.c, um.h: New files.
1052        * wbase64.c: Removed.
1053        * Makefile.am, asp.c, balloc.c, default.c, ej.h, ejlex.c, ejparse.c,
1054        form.c, h.c, handler.c, mime.c, misc.c, ringq.c, rom.c, security.c,
1055        socket.c, sym.c, uemf.c, uemf.h, url.c, value.c, webcomp.c, webmain.c,
1056        webpage.c, webrom.c, webs.c, webs.h, websuemf.c, wsIntrn.h: Modified.
1057
10582000-08-31      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1059
1060        * netinet/tcp_input.c: Spelling corrections.
1061
10622000-08-30      Joel Sherrill <joel@OARcorp.com>
1063
1064        * rtems_webserver/license.txt: New file.
1065
10662000-08-10      Joel Sherrill <joel@OARcorp.com>
1067
1068        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.