[ source navigation ] [ identifier search ] [ freetext search ] [ file search ]

FreeBSD/Linux Kernel Cross Reference
sys/netipx/

Version: -  FREEBSD  -  FREEBSD7  -  FREEBSD70  -  FREEBSD6  -  FREEBSD63  -  FREEBSD62  -  FREEBSD61  -  FREEBSD60  -  FREEBSD5  -  FREEBSD55  -  FREEBSD54  -  FREEBSD53  -  FREEBSD52  -  FREEBSD51  -  FREEBSD50  -  FREEBSD4  -  FREEBSD3  -  linux-2.6  -  linux-2.4.22  -  MK83  -  MK84  -  PLAN9  -  DFBSD  -  NETBSD  -  NETBSD4  -  NETBSD3  -  NETBSD20  -  OPENBSD  -  xnu-517  -  xnu-792  -  xnu-792.6.70  -  xnu-1228  -  OPENSOLARIS  -  minix-3-1-1  -  TRUSTEDBSD-SEBSD  -  TRUSTEDBSD-SEDARWIN  -  TRUSTEDBSD-SEDARWIN7 
Ident_Mode: -  plain  -  excerpts  -  bigexcerpts 

Name Size Last modified (GMT) Description
Back Parent directory 2008-08-21 20:04:20
File README 1816 bytes 2006-04-02 14:07:27
C file ipx.c 11743 bytes 2007-06-25 11:49:37
C file ipx.h 7137 bytes 2007-06-25 11:49:37
C file ipx_cksum.c 4698 bytes 2007-05-14 01:14:32
C file ipx_if.h 5039 bytes 2007-06-25 11:49:37
C file ipx_input.c 13735 bytes 2008-07-31 16:24:12
C file ipx_outputfl.c 8425 bytes 2007-05-14 01:14:32
C file ipx_pcb.c 11825 bytes 2007-05-14 01:14:32
C file ipx_pcb.h 6395 bytes 2007-05-14 01:14:32
C file ipx_proto.c 5615 bytes 2008-05-10 14:19:07
C file ipx_usrreq.c 17185 bytes 2008-07-31 16:24:12
C file ipx_var.h 5628 bytes 2007-05-14 01:14:32
C file spx.h 8585 bytes 2007-01-27 20:16:46
C file spx_debug.c 6183 bytes 2007-08-07 14:16:21
C file spx_debug.h 4243 bytes 2007-08-07 14:16:21
C file spx_timer.h 6894 bytes 2007-01-27 20:16:46
C file spx_usrreq.c 51725 bytes 2008-05-29 12:20:37
C file spx_var.h 6764 bytes 2007-01-27 20:16:46

  1 $FreeBSD: src/sys/netipx/README,v 1.8 2006/03/27 09:10:09 rwatson Exp $
  2 
  3 This protocol implements IPX/SPX over Ethernet_II frame type 0x8137.
  4 Please note: the SPX implementation may require further work and testing
  5 to insure proper operation.
  6 
  7 Mike Mitchell, Network Engineer
  8 AMTECH Systems Corporation, Technology and Manufacturing
  9 8600 Jefferson Street, Albuquerque, New Mexico 87113 (505) 856-8000
 10 supervisor@alb.asctmd.com
 11 
 12 John Hay
 13 Some Company
 14 Some Address
 15 jhay@mikom.csir.co.za
 16 
 17 Adapted for multi-processor, multi-threaded network stack by Robert N. M.
 18 Watson, Computer Laboratory, University of Cambridge.
 19 
 20 --- Copyright Information ---
 21 /*-
 22 
 23 Copyright (c) 1984, 1985, 1986, 1987, 1993
 24 The Regents of the University of California.  All rights reserved.
 25 
 26 Modifications Copyright (c) 1995, Mike Mitchell
 27 Modifications Copyright (c) 1995, John Hay
 28 Modifications Copyright (c) 2004-2006 Robert N. M. Watson
 29 
 30 */
 31 
 32 --- TODO ---
 33 
 34 (1) netipx default socket buffer sizes are very small by contemporary
 35     standards, and should be increased following testing and measurement.
 36 
 37 (2) SPX will free the PCB and socket buffer memory on close(), which means
 38     close() in effects terminates the transfer of any outstanding buffered
 39     but unsent data.  As with TCP, it should instead grab its own
 40     reference to the socket so that it is not released, as hold onto it
 41     until the data transfer is complete.
 42 
 43 (3) Raw socket capture of IPX output intercepts packets in the SPX output
 44     routine in order to feed them back into the raw socket.  This results
 45     in recursion into the socket code in the transmit path; instead,
 46     captured packets should be fed into a netisr that reinjects them into
 47     raw sockets from a new (asynchronous) context.
 48 
 49 (4) IPX over IP encapsulation needs work to make it properly MPSAFE.

[ source navigation ] [ identifier search ] [ freetext search ] [ file search ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.