chore: add comment

This commit is contained in:
Skyxim 2023-03-12 15:05:28 +08:00
parent 7f588935ea
commit 074fee2b48

View File

@ -20,6 +20,7 @@ func NewHosts(hosts *trie.DomainTrie[HostValue]) Hosts {
}
}
// Return the search result and whether to match the parameter `isDomain`
func (h *Hosts) Search(domain string, isDomain bool) (*HostValue, bool) {
value := h.DomainTrie.Search(domain)
if value == nil {