summaryrefslogtreecommitdiffstats
path: root/netwerk/dns/DNS.h
diff options
context:
space:
mode:
Diffstat (limited to 'netwerk/dns/DNS.h')
-rw-r--r--netwerk/dns/DNS.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/netwerk/dns/DNS.h b/netwerk/dns/DNS.h
index a0dbbaa17d..64dd7a7336 100644
--- a/netwerk/dns/DNS.h
+++ b/netwerk/dns/DNS.h
@@ -216,6 +216,11 @@ class AddrInfo {
mInfo->mAddresses = std::move(addresses);
}
+ template <class Comparator>
+ void SortAddresses(const Comparator& aComp) {
+ mInfo->mAddresses.Sort(aComp);
+ }
+
void SetCanonicalHostname(const nsACString& aCname) {
mInfo->mCanonicalName = aCname;
}