Skip to content

Commit

Permalink
Fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
cziter15 committed Feb 14, 2025
1 parent 4adbec1 commit 75d8b36
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/ksf/misc/ksDomainQuery.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ namespace ksf::misc
udp->write(static_cast<uint8_t>(value & 0xFF));
}

ksDomainQuery::~ksDomainQuery() = default;

ksDomainQuery::ksDomainQuery() : ksDomainQuery(KSF_DOMAIN_QUERY_DNS_SERVER) {}

ksDomainQuery::ksDomainQuery(IPAddress dnsServer)
Expand Down
5 changes: 5 additions & 0 deletions src/ksf/misc/ksDomainQuery.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,5 +91,10 @@ namespace ksf::misc
@brief Handles resolver tasks, such as sending queries and receiving responses.
*/
void process();

/*!
@brief Destructor.
*/
virtual ~ksDomainQuery();
};
}

0 comments on commit 75d8b36

Please sign in to comment.