From: James Prestwood <prestwoj@gmail.com>
To: iwd@lists.linux.dev
Cc: James Prestwood <prestwoj@gmail.com>
Subject: [PATCH 4/6] network: add back network_bss_list_clear
Date: Fri, 16 Aug 2024 05:52:12 -0700 [thread overview]
Message-ID: <20240816125214.1162415-4-prestwoj@gmail.com> (raw)
In-Reply-To: <20240816125214.1162415-1-prestwoj@gmail.com>
Rename network_bss_update_start back to network_bss_list_clear, since
this is what its now doing again.
---
src/network.c | 2 +-
src/network.h | 2 +-
src/station.c | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/network.c b/src/network.c
index b9194b3c..300e8090 100644
--- a/src/network.c
+++ b/src/network.c
@@ -1146,7 +1146,7 @@ const char *network_bss_get_path(const struct network *network,
return __network_path_append_bss(network->object_path, bss);
}
-void network_bss_start_update(struct network *network)
+void network_bss_list_clear(struct network *network)
{
l_queue_destroy(network->bss_list, NULL);
network->bss_list = l_queue_new();
diff --git a/src/network.h b/src/network.h
index 73d2ddb0..849051dd 100644
--- a/src/network.h
+++ b/src/network.h
@@ -68,7 +68,7 @@ int network_can_connect_bss(struct network *network,
const struct scan_bss *bss);
int network_autoconnect(struct network *network, struct scan_bss *bss);
void network_connect_failed(struct network *network, bool in_handshake);
-void network_bss_start_update(struct network *network);
+void network_bss_list_clear(struct network *network);
bool network_bss_add(struct network *network, struct scan_bss *bss);
bool network_bss_update(struct network *network, struct scan_bss *bss);
const char *network_bss_get_path(const struct network *network,
diff --git a/src/station.c b/src/station.c
index 25ddce43..e1352041 100644
--- a/src/station.c
+++ b/src/station.c
@@ -1015,7 +1015,7 @@ void station_set_scan_results(struct station *station,
l_queue_foreach_remove(new_bss_list, bss_free_if_ssid_not_utf8, NULL);
while ((network = l_queue_pop_head(station->networks_sorted)))
- network_bss_start_update(network);
+ network_bss_list_clear(network);
l_queue_clear(station->hidden_bss_list_sorted, NULL);
--
2.34.1
next prev parent reply other threads:[~2024-08-16 12:52 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-16 12:52 [PATCH 1/6] network: add __network_path_append_bss James Prestwood
2024-08-16 12:52 ` [PATCH 2/6] station: move BasicServiceSet DBus management into station James Prestwood
2024-08-19 15:22 ` Denis Kenzior
2024-08-16 12:52 ` [PATCH 3/6] network: remove BasicServiceSet DBus registration code James Prestwood
2024-08-16 12:52 ` James Prestwood [this message]
2024-08-16 12:52 ` [PATCH 5/6] auto-t: Add ExtendedServiceSet property James Prestwood
2024-08-16 12:52 ` [PATCH 6/6] auto-t: Add test for BasicServiceSets James Prestwood
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240816125214.1162415-4-prestwoj@gmail.com \
--to=prestwoj@gmail.com \
--cc=iwd@lists.linux.dev \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox