diff options
author | peter <peter@FreeBSD.org> | 1995-11-03 08:42:21 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1995-11-03 08:42:21 +0000 |
commit | 5f00167641d57332e1952cd7ec49cfc0aa9444d9 (patch) | |
tree | cbd9522acd2790fd2f45720dc18b8e5338aeef46 /sys/net | |
parent | ed6a6a65670079c8b2d3d4008ac425217ff14e95 (diff) | |
download | FreeBSD-src-5f00167641d57332e1952cd7ec49cfc0aa9444d9.zip FreeBSD-src-5f00167641d57332e1952cd7ec49cfc0aa9444d9.tar.gz |
Fix the incomplete merge for the IPX code - the internals are different.
Note, the IPX in pppd support is not really there. I suspect that
it may work if you ifconfig it up manually.
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/if_ppp.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/net/if_ppp.c b/sys/net/if_ppp.c index 2202a08..0c1a65e 100644 --- a/sys/net/if_ppp.c +++ b/sys/net/if_ppp.c @@ -69,7 +69,7 @@ * Paul Mackerras (paulus@cs.anu.edu.au). */ -/* $Id: if_ppp.c,v 1.25 1995/10/31 20:24:08 peter Exp $ */ +/* $Id: if_ppp.c,v 1.26 1995/11/01 00:58:42 peter Exp $ */ /* from if_ppp.c,v 1.5 1995/08/16 01:36:38 paulus Exp */ /* from if_sl.c,v 1.11 84/10/04 12:54:47 rick Exp */ @@ -613,7 +613,15 @@ pppoutput(ifp, m0, dst, rtp) #endif #ifdef IPX case AF_IPX: + /* + * This is pretty bogus.. We dont have an ipxcp module in pppd + * yet to configure the link parameters. Sigh. I guess a + * manual ifconfig would do.... -Peter + */ + address = PPP_ALLSTATIONS; + control = PPP_UI; protocol = PPP_IPX; + mode = NPMODE_PASS; break; #endif case AF_UNSPEC: |