From: Jouni Malinen Date: Sat, 30 Mar 2013 15:06:50 +0000 (+0200) Subject: ap_list: Remove unused functions X-Git-Tag: aosp-kk-from-upstream~397 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=69554d78f6b8778c66ab688617225e62983c50fa;p=thirdparty%2Fhostap.git ap_list: Remove unused functions Signed-hostap: Jouni Malinen --- diff --git a/src/ap/ap_list.c b/src/ap/ap_list.c index 585328c90..4260466d4 100644 --- a/src/ap/ap_list.c +++ b/src/ap/ap_list.c @@ -50,7 +50,7 @@ static int ap_list_beacon_olbc(struct hostapd_iface *iface, struct ap_info *ap) } -struct ap_info * ap_get_ap(struct hostapd_iface *iface, const u8 *ap) +static struct ap_info * ap_get_ap(struct hostapd_iface *iface, const u8 *ap) { struct ap_info *s; @@ -142,25 +142,6 @@ static void hostapd_free_aps(struct hostapd_iface *iface) } -int ap_ap_for_each(struct hostapd_iface *iface, - int (*func)(struct ap_info *s, void *data), void *data) -{ - struct ap_info *s; - int ret = 0; - - s = iface->ap_list; - - while (s) { - ret = func(s, data); - if (ret) - break; - s = s->next; - } - - return ret; -} - - static struct ap_info * ap_ap_add(struct hostapd_iface *iface, const u8 *addr) { struct ap_info *ap; diff --git a/src/ap/ap_list.h b/src/ap/ap_list.h index 24606cca4..d0529a1b4 100644 --- a/src/ap/ap_list.h +++ b/src/ap/ap_list.h @@ -32,9 +32,6 @@ struct ap_info { struct ieee802_11_elems; struct hostapd_frame_info; -struct ap_info * ap_get_ap(struct hostapd_iface *iface, const u8 *sta); -int ap_ap_for_each(struct hostapd_iface *iface, - int (*func)(struct ap_info *s, void *data), void *data); void ap_list_process_beacon(struct hostapd_iface *iface, const struct ieee80211_mgmt *mgmt, struct ieee802_11_elems *elems,