aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2026-05-18 19:47:57 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2026-05-18 19:47:57 +0000
commit63d7b7fad2dd2343854c60f0da4ac46ef5b0d8b1 (patch)
tree61f80dda8c880b129e3130e44ef9bf8950fc0e38
parent4f90de0933218fd257300c6341abf157387f7641 (diff)
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
-rw-r--r--usr.sbin/ctld/ctld.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ctld/ctld.hh b/usr.sbin/ctld/ctld.hh
index 45590ada4111..d3b08dc12603 100644
--- a/usr.sbin/ctld/ctld.hh
+++ b/usr.sbin/ctld/ctld.hh
@@ -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;