summaryrefslogtreecommitdiff
path: root/sys/netipx
Commit message (Collapse)AuthorAgeFilesLines
* YAMFCPoul-Henning Kamp1996-11-252-7/+19
| | | | Notes: svn path=/stable/2.2/; revision=19955
* Accept odd length ipx packets. (Win95 and some dialup servers use it.)John Hay1996-08-181-6/+10
| | | | | | | Original idea submitted by: Atsushi Murai <amurai@spec.co.jp> Notes: svn path=/head/; revision=17643
* Clean up -Wunused warnings.Gary Palmer1996-06-121-3/+1
| | | | | | | Reviewed by: bde Notes: svn path=/head/; revision=16322
* Make IPXIP work.John Hay1996-05-084-18/+18
| | | | | | | Reviewed by: Gary Palmer gpalmer@FreeBSD.ORG Notes: svn path=/head/; revision=15688
* Zero out some (unused) entries in the ipxsw initiliser which only lead toGary Palmer1996-05-081-6/+6
| | | | | | | | | compile-tiome warnings. Tested by: John Hay <jhay@mikom.csir.co.za> Notes: svn path=/head/; revision=15682
* Don't use a newfangled auto initializer. Initialize everything byJohn Hay1996-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 Notes: svn path=/head/; revision=15245
* Eliminated sloppy common-style declarations. Now there are no duplicatedBruce Evans1996-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. Notes: svn path=/head/; revision=15239
* Move or add #include <queue.h> in preparation for upcoming struct socketDavid Greenman1996-03-118-9/+16
| | | | | | | changes. Notes: svn path=/head/; revision=14546
* Kill XNS.Garrett 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...) Notes: svn path=/head/; revision=14093
* Fix a bunch of spelling errors in the comment fields ofMike Pritchard1996-01-303-7/+7
| | | | | | | a bunch of system include files. Notes: svn path=/head/; revision=13765
* Finally demolished the last, tottering remnants of GATEWAY. If you wantGarrett Wollman1996-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.) Notes: svn path=/head/; revision=13266
* Oops, forgot to update this to match pr_ctlinput.Bruce Evans1995-12-161-3/+3
| | | | | | | Added comment about bogus LOMTU. Notes: svn path=/head/; revision=12883
* Uniformized pr_ctlinput protosw functions. The third arg is now `voidBruce Evans1995-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. Notes: svn path=/head/; revision=12881
* Cleaned up prototypes:Bruce Evans1995-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. Notes: svn path=/head/; revision=12470
* Fixed a bogus name (ifn_en) that was introduced when a type mismatchBruce Evans1995-11-241-4/+4
| | | | | | | was fixed. Notes: svn path=/head/; revision=12469
* Added #include <sys/queue.h>. This will be required when I moveBruce Evans1995-11-242-2/+4
| | | | | | | | the (inline) implementations of insque() and remque() from <machine/cpufunc.h> to <sys/queue.h>. Notes: svn path=/head/; revision=12468
* Undid bogus cleanups. 0 was mistyped as NULL.Bruce Evans1995-11-242-5/+5
| | | | Notes: svn path=/head/; revision=12467
* Suggested by: bdeJulian Elischer1995-11-0422-22/+66
| | | | | | | clear up some confusion about Id: lines on behalf of the author Notes: svn path=/head/; revision=12057
* Submitted by: Mike Mitchell (mitchell@ref.tfs.com)Julian Elischer1995-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. Notes: svn path=/head/; revision=11991
* Submitted by: Mike mitchellJulian Elischer1995-10-311-0/+72
| | | | | | | add prototypes htat are related to ipx.ip tunnelling Notes: svn path=/head/; revision=11948
* Submitted by: Mike MitchellJulian Elischer1995-10-3112-131/+179
| | | | | | | | revise prototypes etc. cleanups (probably more coming) Notes: svn path=/head/; revision=11947
* Reviewed by: julian and jhay@mikom.csir.co.zaJulian Elischer1995-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 Notes: svn path=/head/; revision=11819