freebsd-dev/sys/netipx
John Baldwin 137f91e80f Convert all users of IF_ADDR_LOCK to use new locking macros that specify
either a read lock or write lock.

Reviewed by:	bz
MFC after:	2 weeks
2012-01-05 19:00:36 +00:00
..
ipx_cksum.c
ipx_if.h Use queue(9) instead of hand-crafted link lists for the global IPX 2009-06-24 20:57:50 +00:00
ipx_input.c Use queue(9) instead of hand-crafted link lists for the global IPX 2009-06-24 20:57:50 +00:00
ipx_outputfl.c Use queue(9) instead of hand-crafted link lists for the global IPX 2009-06-24 20:57:50 +00:00
ipx_pcb.c Use queue(9) instead of hand-crafted link lists for the global IPX 2009-06-24 20:57:50 +00:00
ipx_pcb.h
ipx_proto.c Mark all SYSCTL_NODEs static that have no corresponding SYSCTL_DECLs. 2011-11-07 15:43:11 +00:00
ipx_usrreq.c Implement socket delivery MAC checks for IPX/SPX. 2009-06-20 23:38:21 +00:00
ipx_var.h Remove unuxed ipx_zerohost. 2009-06-21 16:11:40 +00:00
ipx.c Convert all users of IF_ADDR_LOCK to use new locking macros that specify 2012-01-05 19:00:36 +00:00
ipx.h
README Update copyright on netipx. 2009-06-21 16:11:26 +00:00
spx_debug.c Put the variable declarations for TCPDEBUG under #ifdef INET as well. 2009-06-10 09:28:50 +00:00
spx_debug.h
spx_reass.c Mark MALLOC_DEFINEs static that have no corresponding MALLOC_DECLAREs. 2011-11-07 06:44:47 +00:00
spx_timer.h
spx_usrreq.c Implement socket delivery MAC checks for IPX/SPX. 2009-06-20 23:38:21 +00:00
spx_var.h Rework SPX segment reassembly, which was originally based on our TCP 2009-06-20 18:24:25 +00:00
spx.h Rework SPX segment reassembly, which was originally based on our TCP 2009-06-20 18:24:25 +00:00

$FreeBSD$

This protocol implements IPX/SPX over Ethernet_II frame type 0x8137.
Please note: the SPX implementation may require further work and testing
to insure proper operation.

Mike Mitchell, Network Engineer
AMTECH Systems Corporation, Technology and Manufacturing
8600 Jefferson Street, Albuquerque, New Mexico 87113 (505) 856-8000
supervisor@alb.asctmd.com

John Hay
Some Company
Some Address
jhay@mikom.csir.co.za

Adapted for multi-processor, multi-threaded network stack by Robert N. M.
Watson, Computer Laboratory, University of Cambridge.

--- Copyright Information ---
/*-

Copyright (c) 1984, 1985, 1986, 1987, 1993
The Regents of the University of California.  All rights reserved.

Modifications Copyright (c) 1995, Mike Mitchell
Modifications Copyright (c) 1995, John Hay
Modifications Copyright (c) 2004-2009 Robert N. M. Watson

*/

--- TODO ---

(1) netipx default socket buffer sizes are very small by contemporary
    standards, and should be increased following testing and measurement.

(2) SPX will free the PCB and socket buffer memory on close(), which means
    close() in effects terminates the transfer of any outstanding buffered
    but unsent data.  As with TCP, it should instead grab its own
    reference to the socket so that it is not released, as hold onto it
    until the data transfer is complete.