summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Wright <jason@cvs.openbsd.org>2000-03-30 23:14:26 +0000
committerJason Wright <jason@cvs.openbsd.org>2000-03-30 23:14:26 +0000
commit6f1a17ed6ef49609a572a31453bd3c5a03edb1a0 (patch)
tree3fe99d8a654e476c98835b4a6be26c5e1508c0ab
parent60ececa507ba7855631ee072cb65dda944f8d2c3 (diff)
document hook functions
-rw-r--r--sys/dev/pci/hifn7751.c16
1 files changed, 14 insertions, 2 deletions
diff --git a/sys/dev/pci/hifn7751.c b/sys/dev/pci/hifn7751.c
index 7b22b85b821..ee9e324ae13 100644
--- a/sys/dev/pci/hifn7751.c
+++ b/sys/dev/pci/hifn7751.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: hifn7751.c,v 1.21 2000/03/30 07:30:39 jason Exp $ */
+/* $OpenBSD: hifn7751.c,v 1.22 2000/03/30 23:14:25 jason Exp $ */
/*
* Invertex AEON / Hi/fn 7751 driver
@@ -104,7 +104,7 @@ struct hifn_stats {
u_int32_t hst_opackets;
u_int32_t hst_invalid;
u_int32_t hst_nomem;
-} hifnstats = { 0, 0, 0, 0, 0, 0 };
+} hifnstats;
int
hifn_probe(parent, match, aux)
@@ -1244,6 +1244,13 @@ hifn_intr(arg)
return (1);
}
+/*
+ * Allocate a new 'session' and return an encoded session id. 'sidp'
+ * contains our registration id, and should contain an encoded session
+ * id on successful allocation.
+ * XXX Mac and encrypt keys should be sent to context ram and should
+ * XXX maintain some sort of state.
+ */
int
hifn_newsession(sidp, cri)
u_int32_t *sidp;
@@ -1288,6 +1295,11 @@ hifn_newsession(sidp, cri)
return (0);
}
+/*
+ * Deallocate a session.
+ * XXX this routine should run a zero'd mac/encrypt key into context ram.
+ * XXX to blow away any keys already stored there.
+ */
int
hifn_freesession(sid)
u_int32_t sid;