summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--share/man/man9/Makefile3
-rw-r--r--share/man/man9/ieee80211_node.922
-rw-r--r--sys/net80211/ieee80211_node.h4
3 files changed, 4 insertions, 25 deletions
diff --git a/share/man/man9/Makefile b/share/man/man9/Makefile
index 3bb9dd8b366..014a2484e8b 100644
--- a/share/man/man9/Makefile
+++ b/share/man/man9/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.128 2007/05/31 21:41:41 dlg Exp $
+# $OpenBSD: Makefile,v 1.129 2007/06/16 13:21:44 damien Exp $
# $NetBSD: Makefile,v 1.4 1996/01/09 03:23:01 thorpej Exp $
# Makefile for section 9 (kernel function and variable) manual pages.
@@ -155,7 +155,6 @@ MLINKS+=ieee80211_node.9 ieee80211_node_attach.9 \
ieee80211_node.9 ieee80211_alloc_node.9 \
ieee80211_node.9 ieee80211_dup_bss.9 \
ieee80211_node.9 ieee80211_find_node.9 \
- ieee80211_node.9 ieee80211_lookup_node.9 \
ieee80211_node.9 ieee80211_release_node.9 \
ieee80211_node.9 ieee80211_free_node.9 \
ieee80211_node.9 ieee80211_free_allnodes.9 \
diff --git a/share/man/man9/ieee80211_node.9 b/share/man/man9/ieee80211_node.9
index 8e7a7c4c7a6..0e71f5171f1 100644
--- a/share/man/man9/ieee80211_node.9
+++ b/share/man/man9/ieee80211_node.9
@@ -1,4 +1,4 @@
-.\" $OpenBSD: ieee80211_node.9,v 1.4 2007/06/16 13:17:05 damien Exp $
+.\" $OpenBSD: ieee80211_node.9,v 1.5 2007/06/16 13:21:44 damien Exp $
.\"
.\" Copyright (c) 2004 Bruce M. Simpson <bms@spc.org>
.\" Copyright (c) 2004 Darron Broad <darron@kewl.org>
@@ -26,7 +26,7 @@
.\" SUCH DAMAGE.
.\"
.\" $FreeBSD: src/share/man/man9/ieee80211_node.9,v 1.3 2004/07/07 12:59:39 ru Exp $
-.\" $Id: ieee80211_node.9,v 1.4 2007/06/16 13:17:05 damien Exp $
+.\" $Id: ieee80211_node.9,v 1.5 2007/06/16 13:21:44 damien Exp $
.\"
.Dd $Mdocdate: June 16 2007 $
.Dt IEEE80211_NODE 9
@@ -42,7 +42,6 @@
.Nm ieee80211_alloc_node ,
.Nm ieee80211_dup_bss ,
.Nm ieee80211_find_node ,
-.Nm ieee80211_lookup_node ,
.Nm ieee80211_release_node ,
.Nm ieee80211_free_node ,
.Nm ieee80211_free_allnodes ,
@@ -75,10 +74,6 @@
.Ft struct ieee80211_node *
.Fn ieee80211_find_node "struct ieee80211com *ic" "const u_int8_t *macaddr"
.Ft struct ieee80211_node *
-.Fo ieee80211_lookup_node
-.Fa "struct ieee80211com *ic" "const u_int8_t *macaddr"
-.Fa "struct ieee80211_channel *chan"
-.Fc
.Ft void
.Fn ieee80211_release_node "struct ieee80211com *ic" "struct ieee80211_node *ni"
.Ft void
@@ -226,19 +221,6 @@ will be returned.
.Pp
.\"
The
-.Fn ieee80211_lookup_node
-function is similar to
-.Fn ieee80211_find_node ,
-with an additional argument
-.Fa chan
-which is used to specify a channel for the match.
-If the entry is found, its reference count is incremented, and
-a pointer to the node is returned; otherwise,
-.Dv NULL
-will be returned.
-.Pp
-.\"
-The
.Fn ieee80211_free_node
function will remove the node
.Fa ni
diff --git a/sys/net80211/ieee80211_node.h b/sys/net80211/ieee80211_node.h
index 071fe84763d..d2ac93973fc 100644
--- a/sys/net80211/ieee80211_node.h
+++ b/sys/net80211/ieee80211_node.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ieee80211_node.h,v 1.13 2007/06/16 13:17:05 damien Exp $ */
+/* $OpenBSD: ieee80211_node.h,v 1.14 2007/06/16 13:21:44 damien Exp $ */
/* $NetBSD: ieee80211_node.h,v 1.9 2004/04/30 22:57:32 dyoung Exp $ */
/*-
@@ -187,8 +187,6 @@ extern struct ieee80211_node *
ieee80211_find_node_for_beacon(struct ieee80211com *,
const u_int8_t *, const struct ieee80211_channel *,
const char *, u_int8_t);
-extern struct ieee80211_node * ieee80211_lookup_node(struct ieee80211com *,
- u_int8_t *, struct ieee80211_channel *);
extern void ieee80211_release_node(struct ieee80211com *,
struct ieee80211_node *);
extern void ieee80211_free_allnodes(struct ieee80211com *);