]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
Make hostapd_copy_psk_list() non-static
authorMichael Braun <michael-dev@fami-braun.de>
Sun, 28 Apr 2019 11:14:57 +0000 (13:14 +0200)
committerJouni Malinen <j@w1.fi>
Sun, 29 Dec 2019 21:34:01 +0000 (23:34 +0200)
Signed-off-by: Michael Braun <michael-dev@fami-braun.de>
src/ap/ieee802_11_auth.c
src/ap/ieee802_11_auth.h

index 70ddf4a386e1444d24bac9c865e9c98f5badf5cf..6295b996d4b1c5c1c6d94b55f3b235060cc93d41 100644 (file)
@@ -68,19 +68,6 @@ static void hostapd_acl_cache_free(struct hostapd_cached_radius_acl *acl_cache)
 }
 
 
-static void copy_psk_list(struct hostapd_sta_wpa_psk_short **psk,
-                         struct hostapd_sta_wpa_psk_short *src)
-{
-       if (!psk)
-               return;
-
-       if (src)
-               src->ref++;
-
-       *psk = src;
-}
-
-
 static int hostapd_acl_cache_get(struct hostapd_data *hapd, const u8 *addr,
                                 struct radius_sta *out)
 {
@@ -659,6 +646,19 @@ void hostapd_acl_deinit(struct hostapd_data *hapd)
 }
 
 
+void hostapd_copy_psk_list(struct hostapd_sta_wpa_psk_short **psk,
+                          struct hostapd_sta_wpa_psk_short *src)
+{
+       if (!psk)
+               return;
+
+       if (src)
+               src->ref++;
+
+       *psk = src;
+}
+
+
 void hostapd_free_psk_list(struct hostapd_sta_wpa_psk_short *psk)
 {
        if (psk && psk->ref) {
index 0b912860a1a2a5230d0f62d5caf70faed1e1e620..9410f55c5807fa7d3dab98e22182a1a6467628c8 100644 (file)
@@ -34,5 +34,7 @@ int hostapd_acl_init(struct hostapd_data *hapd);
 void hostapd_acl_deinit(struct hostapd_data *hapd);
 void hostapd_free_psk_list(struct hostapd_sta_wpa_psk_short *psk);
 void hostapd_acl_expire(struct hostapd_data *hapd);
+void hostapd_copy_psk_list(struct hostapd_sta_wpa_psk_short **psk,
+                          struct hostapd_sta_wpa_psk_short *src);
 
 #endif /* IEEE802_11_AUTH_H */