summaryrefslogtreecommitdiffstats
path: root/sys/netipx
Commit message (Collapse)AuthorAgeFilesLines
* Accept odd length ipx packets. (Win95 and some dialup servers use it.)jhay1996-08-181-6/+10
| | | | Original idea submitted by: Atsushi Murai <amurai@spec.co.jp>
* Clean up -Wunused warnings.gpalmer1996-06-121-3/+1
| | | | Reviewed by: bde
* Make IPXIP work.jhay1996-05-084-18/+18
| | | | Reviewed by: Gary Palmer gpalmer@FreeBSD.ORG
* Zero out some (unused) entries in the ipxsw initiliser which only lead togpalmer1996-05-081-6/+6
| | | | | | compile-tiome warnings. Tested by: John Hay <jhay@mikom.csir.co.za>
* Don't use a newfangled auto initializer. Initialize everything byjhay1996-04-131-2/+6
| | | | | | | | | | | | | | | | | assignment to avoid one bug and several pessimizations. In the old version, gcc-2.6.3 (i386 version) generates 16 bytes of static data and copies it using 4 4-byte load-stores. gcc-2.7.2 generates 2 1-byte stores and calls memset() to zero 14 bytes. Linking fails because memset() doesn't exist in the kernel. In both versions, the 2 bytes stored directly are all that is actually used unless the null padding at the end is used, since the 3 4-byte words in the middle are initialized again by struct assignment. These words are misaligned. gcc generates misaligned load-stores for (small) misaligned struct copies. Submitted by: Bruce Evans
* Eliminated sloppy common-style declarations. Now there are no duplicatedbde1996-04-133-5/+12
| | | | | | common labels for LINT. There are still some common declarations for the !KERNEL case in tcp_debug.h and spx_debug.h. trpt depends on the ones in tcp_debug.h.
* Move or add #include <queue.h> in preparation for upcoming struct socketdg1996-03-118-9/+16
| | | | changes.
* Kill XNS.wollman1996-02-131-2/+2
| | | | | While we're at it, fix socreate() to take a process argument. (This was supposed to get committed days ago...)
* Fix a bunch of spelling errors in the comment fields ofmpp1996-01-303-7/+7
| | | | a bunch of system include files.
* Finally demolished the last, tottering remnants of GATEWAY. If you wantwollman1996-01-052-19/+21
| | | | | | | to enable IP forwarding, use sysctl(8). Also did the same for IPX, which involved inventing a completely new MIB from whole cloth (which I may not quite have correct); be aware of this if you use IPX forwarding. (The two should never have been controlled by the same option anyway.)
* Oops, forgot to update this to match pr_ctlinput.bde1995-12-161-3/+3
| | | | Added comment about bogus LOMTU.
* Uniformized pr_ctlinput protosw functions. The third arg is now `voidbde1995-12-166-15/+23
| | | | | | | *' instead of caddr_t and it isn't optional (it never was). Most of the netipx (and netns) pr_ctlinput functions abuse the second arg instead of using the third arg but fixing this is beyond the scope of this round of changes.
* Cleaned up prototypes:bde1995-11-247-131/+112
| | | | | | | | | | | | - don't #include other headers just to get struct names. - don't use __BEGIN_DECLS/__END_DECLS for system prototypes. It is for user prototypes. - don't use extern. - don't use lines longer than 80 columns. - use alphabetical order. - use tabs. Uniformized idempotency ifdefs.
* Fixed a bogus name (ifn_en) that was introduced when a type mismatchbde1995-11-241-4/+4
| | | | was fixed.
* Added #include <sys/queue.h>. This will be required when I movebde1995-11-242-2/+4
| | | | | the (inline) implementations of insque() and remque() from <machine/cpufunc.h> to <sys/queue.h>.
* Undid bogus cleanups. 0 was mistyped as NULL.bde1995-11-242-5/+5
|
* Suggested by: bdejulian1995-11-0422-22/+66
| | | | clear up some confusion about Id: lines on behalf of the author
* Submitted by: Mike Mitchell (mitchell@ref.tfs.com)julian1995-10-3122-35/+46
| | | | | these patches bring the ipx code up to the point that it compiles cleanly with the -W arguments suggested by bruce.
* Submitted by: Mike mitchelljulian1995-10-311-0/+72
| | | | add prototypes htat are related to ipx.ip tunnelling
* Submitted by: Mike Mitchelljulian1995-10-3112-131/+179
| | | | | revise prototypes etc. cleanups (probably more coming)
* Reviewed by: julian and jhay@mikom.csir.co.zajulian1995-10-2622-0/+6248
Submitted by: Mike Mitchell, supervisor@alb.asctmd.com This is a bulk mport of Mike's IPX/SPX protocol stacks and all the related gunf that goes with it.. it is not guaranteed to work 100% correctly at this time but as we had several people trying to work on it I figured it would be better to get it checked in so they could all get teh same thing to work on.. Mikes been using it for a year or so but on 2.0 more changes and stuff will be merged in from other developers now that this is in. Mike Mitchell, Network Engineer AMTECH Systems Corporation, Technology and Manufacturing 8600 Jefferson Street, Albuquerque, New Mexico 87113 (505) 856-8000 supervisor@alb.asctmd.com
OpenPOWER on IntegriCloud