The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/netipx/

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

Name Size Last modified (GMT) Description
Back Parent directory 2023-01-29 23:25:04
File README 1754 bytes 2023-01-29 20:39:12
C file ipx.c 10389 bytes 2023-01-29 20:39:12
C file ipx.h 5552 bytes 2023-01-29 20:39:12
C file ipx_cksum.c 3138 bytes 2023-01-29 20:39:12
C file ipx_if.h 3662 bytes 2023-01-29 20:39:12
C file ipx_input.c 12164 bytes 2023-01-29 20:39:12
C file ipx_ip.c 10987 bytes 2023-01-29 20:39:12
C file ipx_ip.h 2402 bytes 2023-01-29 20:39:12
C file ipx_outputfl.c 6911 bytes 2023-01-29 20:39:12
C file ipx_pcb.c 10422 bytes 2023-01-29 20:39:12
C file ipx_pcb.h 4810 bytes 2023-01-29 20:39:12
C file ipx_proto.c 3901 bytes 2023-01-29 20:39:12
C file ipx_usrreq.c 15854 bytes 2023-01-29 20:39:12
C file ipx_var.h 4069 bytes 2023-01-29 20:39:12
C file spx.h 7031 bytes 2023-01-29 20:39:12
C file spx_debug.c 4616 bytes 2023-01-29 20:39:12
C file spx_debug.h 2712 bytes 2023-01-29 20:39:12
C file spx_timer.h 5334 bytes 2023-01-29 20:39:12
C file spx_usrreq.c 49793 bytes 2023-01-29 20:39:12
C file spx_var.h 5206 bytes 2023-01-29 20:39:12

    1 $FreeBSD$
    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 ] [ list types ] [ track identifier ]


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