ctld: Mark a few more isns_* methods in the conf class private

These are only invoked from other methods in the conf class.

Sponsored by:	Chelsio Communications
Differential Revision:	https://reviews.freebsd.org/D56531
This commit is contained in:
John Baldwin
2026-05-18 15:47:57 -04:00
parent 4f90de0933
commit 63d7b7fad2
+3 -3
View File
@@ -508,9 +508,6 @@ struct conf {
void set_timeout(int timeout);
bool add_isns(const char *addr);
void isns_register_targets(struct isns *isns, struct conf *oldconf);
void isns_deregister_targets(struct isns *isns);
void isns_schedule_update();
void isns_update();
int apply(struct conf *oldconf);
@@ -523,6 +520,9 @@ private:
struct isns_req isns_check_request(const char *hostname);
struct isns_req isns_deregister_request(const char *hostname);
void isns_check(struct isns *isns);
void isns_deregister_targets(struct isns *isns);
void isns_register_targets(struct isns *isns, struct conf *oldconf);
void isns_schedule_update();
std::string conf_pidfile_path;
std::unordered_map<std::string, std::unique_ptr<lun>> conf_luns;