summaryrefslogtreecommitdiff
path: root/sys/net/if_atm.h
diff options
context:
space:
mode:
authorchuck <chuck@cvs.openbsd.org>1996-06-27 04:33:11 +0000
committerchuck <chuck@cvs.openbsd.org>1996-06-27 04:33:11 +0000
commit585c795fb050abdab52804b83738c389da507d93 (patch)
treedaee16f10e0dd3118733d64e5ccd3f40a9bc3594 /sys/net/if_atm.h
parente9ed80a08bbb6cd8a13097c9e3478134b83910a4 (diff)
fix/improvement:
- add proto if atm_input - add native mode atm hooks to if_atmsubr.c (atm_input)
Diffstat (limited to 'sys/net/if_atm.h')
-rw-r--r--sys/net/if_atm.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/sys/net/if_atm.h b/sys/net/if_atm.h
index 7cac9f22004..e4115f34504 100644
--- a/sys/net/if_atm.h
+++ b/sys/net/if_atm.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_atm.h,v 1.3 1996/06/26 04:21:31 chuck Exp $ */
+/* $OpenBSD: if_atm.h,v 1.4 1996/06/27 04:33:10 chuck Exp $ */
/*
*
@@ -89,7 +89,9 @@ struct atmllc {
}
#ifdef _KERNEL
-void atm_ifattach __P((struct ifnet *));
-int atm_output __P((struct ifnet *, struct mbuf *, struct sockaddr *,
- struct rtentry *));
+void atm_ifattach __P((struct ifnet *));
+void atm_input __P((struct ifnet *, struct atm_pseudohdr *,
+ struct mbuf *, struct socket *));
+int atm_output __P((struct ifnet *, struct mbuf *, struct sockaddr *,
+ struct rtentry *));
#endif