summaryrefslogtreecommitdiffstats
path: root/c/src/libnetworking (unfollow)
Commit message (Collapse)AuthorFilesLines
1999-02-05Patch from Eric Norum to correct bug induced by select() patch.Joel Sherrill2-5/+11
1999-02-04Added printf()'s that can be uncommented to trace MBUF operations. ThisJoel Sherrill1-0/+3
is very useful when debugging a device driver.
1999-02-04Modifed to reflect transition from device driver to file system.Joel Sherrill1-41/+4
1999-02-04Added debug printf()'s that are commented out. Uncommenting theseJoel Sherrill1-0/+3
allows one to trace the enqueueing and dequeueing of messages. This can be used to insure that packets are getting to the boundary between the network stack and the device driver.
1999-02-04Added PowerPC specific header checksum code.Joel Sherrill1-34/+5
1999-02-04Added PowerPC specific header checksum code.Joel Sherrill1-4/+61
Added volatile to i386 assembly statements in header checksum code.
1999-02-04Debugged and now works except for handling of minor number.Joel Sherrill1-313/+429
1999-02-04Modified to include comments on how to get TCPDEBUG turned on andJoel Sherrill2-1/+11
printing messages.
1999-02-02Added debug #define and commented it out.Joel Sherrill1-0/+1
1999-02-02Added PowerPC specific in_cksum file.Joel Sherrill1-0/+4
1999-02-02New file. Based on the i386 version.Joel Sherrill1-0/+202
1999-01-31Prepended macro variables with "_" to avoid name conflicts in expansions.Joel Sherrill1-78/+78
1999-01-28Patch from Eric Norum <eric@skatter.usask.ca> to avoid dereferencing aJoel Sherrill1-1/+4
NULL pointer.
1999-01-26Changed prototype of rtems_bsdnet_makeFdForSocket to (void *) pointerJoel Sherrill1-1/+1
so that the libc code did not have to know about (struct socket).
1999-01-26Switched from printf() to puts().Joel Sherrill1-1/+1
1999-01-21Made to compile after hacking tftp driver into beginnings of a mini-filesystem.Joel Sherrill5-39/+299
1999-01-19Added comments for changing to a filesystemJoel Sherrill1-0/+4
1999-01-04Patch from D. V. Henkel-Wallace <gumby@zembu.com> to use puts and have ↵Joel Sherrill1-1/+3
prototype.
1999-01-04Patch from D. V. Henkel-Wallace <gumby@zembu.com> to fix braces nesting problem.Joel Sherrill1-1/+2
1999-01-04Patch from D. V. Henkel-Wallace <gumby@zembu.com> to make macro nest ↵Joel Sherrill1-3/+5
properly in conditionals
1998-12-10Merged Eric Norum's select patch that was based on 4.0 and resolvedJoel Sherrill4-123/+23
all conflicts.
1998-12-10Patch from Ian Lance Taylor <ian@airs.com>:Joel Sherrill4-0/+31
From: Eric Norum <eric@skatter.usask.ca> Date: Sat, 5 Dec 98 13:20:51 -0600 What do you think of this patch? It implements your `tap' suggestion in a way that adds support for all ethernet devices with no driver modifications. I also added a return value from the tap function. If the return value is zero, the packet will be passed up the chain as usual. If the return value is non-zero the mbuf holding the packet will be freed and the packet will be dropped. If you like it, please submit it to Joel. I guess there needs to be an addition to the network documentation describing the additional ioctl's -- and a big warning that the tap function is called from a context that holds the network semaphore. Here is Eric's patch. I've tested it a bit, and made a couple of trivial changes. This is certainly better than mine: it should work for all Ethernet drivers. ================================================== The only concern I have about this patch is that the tap function may want to fiddle with the mbuf, calling functions like m_pullup and the like. If those force the networking code to rearrange the mbuf structure, then the caller's call to m_freem may crash. I don't know if this is a realistic concern--I don't know enough about the mbuf layer.
1998-12-07Patch from Ian Lance Taylor <ian@airs.com>:Joel Sherrill3-5/+12
RTEMS permits using the SO_SNDTIMEO and SO_RCVTIMEO socket options to set a timeout for most socket I/O operations. However, in RTEMS 4.0.0, those options do not affect connect or accept. I don't know of any way to put a timeout on those calls in RTEMS 4.0.0; can anybody point to one. Since it is frequently useful to have a timeout on accept, and sometimes useful to have a timeout on connect shorter than the BSD system default of 75 seconds, the following patch causes SO_RCVTIMEO to affect connect and accept.
1998-11-19Patch from Eric Norum <eric@skatter.usask.ca>:Joel Sherrill5-174/+220
1) Socket timeout field changed from `short' to `long'. This makes longer timeouts possible. With a 1 kHz system clock the old system allowed timeouts only up to a little over 30 seconds! This change is a slightly cleaned-up version of the patch proposed by Ian Lance Taylor. 2) Major changes to BOOTP/DHCP reply handling. Now supports much of RFC2132. These changes were done at the request of, and with the assistance of, Erik Ivanenko. If you're making changes, you might want to change the network supplement Essentially just do a global search and replace of BOOTP with BOOTP/DHCP.
1998-10-12Added header files per request from Chris Johns to avoid problemsJoel Sherrill1-0/+4
in include file order.
1998-09-29Patch from Eric Norum <eric@skatter.usask.ca>:Joel Sherrill1-3/+2
Remember the test to see if a socket could be read and written at the same time by two different tasks? I discovered that if both tasks attempt to close the socket a panic can occur from inside the BSD code. Closing the same socket twice from two different threads is certainly an error, but a panic is not the greatest error reporting method :-) The following small change to the socket close routine should reduce the chances of the panic.
1998-09-21Patch from Eric Norum <eric@skatter.usask.ca>:Joel Sherrill1-29/+101
Here's a patch to make the rtems_showroute routine a little more useful. For `host' route table entries the link-level address is now displayed. This is equivalent to the old `show arp table' information displayed by the KA9Q code.
1998-09-21Patch from Eric Norum and David Fiddes to put ColdFire support inJoel Sherrill1-8/+9
the inet checksum routine.
1998-09-11Patch from "David J. Fiddes" <D.J@fiddes.surfaid.org>:Joel Sherrill1-126/+37
I've fixed a few minor probs with the optimised version that Eric put together for me the other day and sent the fixes back to him. Provided he doesn't have a problem with it we've got a pretty solid in_cksum for the ColdFire as well as straight m68k. I've enclosed my updated in_cksum_m68k.c At the moment my own bottlenecks are elsewhere...as my driver is pulling 16bit data chunks through a libchip-esq access routine from the chip which for a polled I/O device is never going to be quick.
1998-09-10Patch from David Fiddes <D.J.Fiddes@hw.ac.uk> to make this compileJoel Sherrill1-1/+1
for the ColdFire.
1998-09-10Patch from Eric Norum <eric@skatter.usask.ca> to fix a cryptic errorJoel Sherrill1-1/+3
message after comments from Eric Valette <valette@crf.canon.fr>.
1998-08-31Fixed spacing. More comments from Eric Norum need to be addressed.Joel Sherrill1-7/+7
1998-08-31Patch from Emmanuel Raguet <raguet@crf.canon.fr>:Joel Sherrill1-0/+9
I have reworked the ethernet driver for the BSP pc386 and here is the patch to apply.
1998-08-21Added i386 specific version of in_cksum.c and restructured the mainJoel Sherrill3-151/+515
file to switch out to CPU specific implementations.
1998-08-21Another missing piece. Thanks Eric.Joel Sherrill1-0/+3
1998-08-21All warnings removed.Joel Sherrill7-6/+25
1998-08-21Removed networkconfig.h since it reflects target specific initialization.Joel Sherrill1-2/+2
1998-08-21Fixed warning about pointer/integer conversion which turned out to beJoel Sherrill1-1/+1
a missed "&" on a write.
1998-08-20Patches from Eric NorumJoel Sherrill2-3/+19
1998-08-20Added CVS IdsJoel Sherrill65-0/+205
1998-08-20Fixed many warnings.Joel Sherrill35-86/+162
1998-08-20Temporarily leave strsep out of the build.Joel Sherrill1-2/+4
1998-08-20Added missing file.Joel Sherrill1-1/+1
1998-08-20FreeBSD stack compiles for the first time (except libc/strsep.c).Joel Sherrill18-12/+380
1998-08-20Base filesJoel Sherrill2-0/+95
1998-08-20Base filesJoel Sherrill6-0/+292
1998-08-20Base version.Joel Sherrill1-0/+14
1998-08-19Base filesJoel Sherrill216-0/+59975