diff options
author | chuck <chuck@cvs.openbsd.org> | 1996-06-29 20:05:43 +0000 |
---|---|---|
committer | chuck <chuck@cvs.openbsd.org> | 1996-06-29 20:05:43 +0000 |
commit | ce37fd98bb818981d25fa914945966e4ac29013b (patch) | |
tree | ee8ea35f179234121ea9ce6e2ec4370cedb08e47 /sys/net/if_atm.h | |
parent | 4847779fcdef377877b037cdd5e3c46aa27a0009 (diff) |
change:
- change asock to rxhand and adjust all for this [esp atm_input]
Diffstat (limited to 'sys/net/if_atm.h')
-rw-r--r-- | sys/net/if_atm.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/net/if_atm.h b/sys/net/if_atm.h index d1d60f2a3fd..5620bc89b3e 100644 --- a/sys/net/if_atm.h +++ b/sys/net/if_atm.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_atm.h,v 1.5 1996/06/28 02:33:41 chuck Exp $ */ +/* $OpenBSD: if_atm.h,v 1.6 1996/06/29 20:05:41 chuck Exp $ */ /* * @@ -68,7 +68,7 @@ struct atm_pseudohdr { /* atm_pseudoioctl: turns on and off RX VCIs [for internal use only!] */ struct atm_pseudoioctl { struct atm_pseudohdr aph; - struct socket *asock; + void *rxhand; }; #define SIOCATMENA _IOWR('a', 123, struct atm_pseudoioctl) /* enable */ #define SIOCATMDIS _IOWR('a', 124, struct atm_pseudoioctl) /* disable */ @@ -92,7 +92,7 @@ struct atmllc { #ifdef _KERNEL void atm_ifattach __P((struct ifnet *)); void atm_input __P((struct ifnet *, struct atm_pseudohdr *, - struct mbuf *, struct socket *)); + struct mbuf *, void *)); int atm_output __P((struct ifnet *, struct mbuf *, struct sockaddr *, struct rtentry *)); #endif |