From patchwork Thu Dec 7 23:41:27 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Grant Erickson X-Patchwork-Id: 13484488 Received: from mohas.pair.com (mohas.pair.com [209.68.5.112]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id AD9C742ABB for ; Thu, 7 Dec 2023 23:41:39 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=nuovations.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=nuovations.com Received: from mohas.pair.com (localhost [127.0.0.1]) by mohas.pair.com (Postfix) with ESMTP id 93A8873118 for ; Thu, 7 Dec 2023 18:41:32 -0500 (EST) Received: from localhost.localdomain (unknown [IPv6:2601:647:5a00:15c1:851a:6a54:a980:b9a9]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mohas.pair.com (Postfix) with ESMTPSA id 511987312C for ; Thu, 7 Dec 2023 18:41:32 -0500 (EST) From: Grant Erickson To: connman@lists.linux.dev Subject: [PATCH 1/4] connection: Colocate search functions. Date: Thu, 7 Dec 2023 15:41:27 -0800 Message-ID: <20231207234130.1093617-2-gerickson@nuovations.com> X-Mailer: git-send-email 2.42.0 In-Reply-To: <20231207234130.1093617-1-gerickson@nuovations.com> References: <20231207234130.1093617-1-gerickson@nuovations.com> Precedence: bulk X-Mailing-List: connman@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Scanned-By: mailmunge 3.11 on 209.68.5.112 This relocates 'find_active_gateway' and 'find_default_gateway' such that they are colocated with other service/gateway map search functions. --- src/connection.c | 70 ++++++++++++++++++++++++------------------------ 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/src/connection.c b/src/connection.c index d4873861e0b6..c74dd0741995 100644 --- a/src/connection.c +++ b/src/connection.c @@ -241,6 +241,41 @@ static struct gateway_data *lookup_gateway_data(struct gateway_config *config) return NULL; } +static struct gateway_data *find_active_gateway(void) +{ + GHashTableIter iter; + gpointer value, key; + + DBG(""); + + g_hash_table_iter_init(&iter, gateway_hash); + + while (g_hash_table_iter_next(&iter, &key, &value)) { + struct gateway_data *data = value; + + if (data->ipv4_config && + data->ipv4_config->active) + return data; + + if (data->ipv6_config && + data->ipv6_config->active) + return data; + } + + return NULL; +} + +static struct gateway_data *find_default_gateway(void) +{ + struct connman_service *service; + + service = connman_service_get_default(); + if (!service) + return NULL; + + return g_hash_table_lookup(gateway_hash, service); +} + static struct gateway_data *find_vpn_gateway(int index, const char *gateway) { GHashTableIter iter; @@ -717,17 +752,6 @@ static void unset_default_gateway(struct gateway_data *data, data->ipv4_config->gateway); } -static struct gateway_data *find_default_gateway(void) -{ - struct connman_service *service; - - service = connman_service_get_default(); - if (!service) - return NULL; - - return g_hash_table_lookup(gateway_hash, service); -} - static bool choose_default_gateway(struct gateway_data *data, struct gateway_data *candidate) { @@ -968,30 +992,6 @@ static struct connman_rtnl connection_rtnl = { .delgateway = connection_delgateway, }; -static struct gateway_data *find_active_gateway(void) -{ - GHashTableIter iter; - gpointer value, key; - - DBG(""); - - g_hash_table_iter_init(&iter, gateway_hash); - - while (g_hash_table_iter_next(&iter, &key, &value)) { - struct gateway_data *data = value; - - if (data->ipv4_config && - data->ipv4_config->active) - return data; - - if (data->ipv6_config && - data->ipv6_config->active) - return data; - } - - return NULL; -} - static void add_host_route(int family, int index, const char *gateway, enum connman_service_type service_type) {