Lines Matching refs:DnsTlsServer

67     DnsTlsServer SERVER1{V4ADDR1};
93 const DnsTlsServer& server ATTRIBUTE_UNUSED, in createDnsTlsSocket()
406 const DnsTlsServer& server ATTRIBUTE_UNUSED, in createDnsTlsSocket()
703 const DnsTlsServer& server, in createDnsTlsSocket()
711 std::multiset<std::pair<unsigned, DnsTlsServer>> keys;
726 std::vector<std::pair<unsigned, DnsTlsServer>> keys; in TEST_F()
743 const DnsTlsServer& server = key.second; in TEST_F()
764 bool isAddressEqual(const DnsTlsServer& s1, const DnsTlsServer& s2) { in isAddressEqual()
771 void checkUnequal(const DnsTlsServer& s1, const DnsTlsServer& s2) { in checkUnequal()
782 void checkEqual(const DnsTlsServer& s1, const DnsTlsServer& s2) { in checkEqual()
797 checkUnequal(DnsTlsServer(V4ADDR1), DnsTlsServer(V4ADDR2)); in TEST_F()
798 EXPECT_FALSE(isAddressEqual(DnsTlsServer(V4ADDR1), DnsTlsServer(V4ADDR2))); in TEST_F()
802 checkUnequal(DnsTlsServer(V6ADDR1), DnsTlsServer(V6ADDR2)); in TEST_F()
803 EXPECT_FALSE(isAddressEqual(DnsTlsServer(V6ADDR1), DnsTlsServer(V6ADDR2))); in TEST_F()
807 checkUnequal(DnsTlsServer(V6ADDR1), DnsTlsServer(V4ADDR1)); in TEST_F()
808 EXPECT_FALSE(isAddressEqual(DnsTlsServer(V6ADDR1), DnsTlsServer(V4ADDR1))); in TEST_F()
812 DnsTlsServer s1(IPAddress::forString("fe80::1%1")); in TEST_F()
813 DnsTlsServer s2(IPAddress::forString("fe80::1%2")); in TEST_F()
822 DnsTlsServer s1(IPSockAddr::toIPSockAddr("192.0.2.1", 853)); in TEST_F()
823 DnsTlsServer s2(IPSockAddr::toIPSockAddr("192.0.2.1", 854)); in TEST_F()
829 DnsTlsServer s3(IPSockAddr::toIPSockAddr("2001:db8::1", 853)); in TEST_F()
830 DnsTlsServer s4(IPSockAddr::toIPSockAddr("2001:db8::1", 854)); in TEST_F()
841 DnsTlsServer s1(V4ADDR1), s2(V4ADDR1); in TEST_F()
853 DnsTlsServer s1(V4ADDR1), s2(V4ADDR1); in TEST_F()
998 const DnsTlsServer server{IPSockAddr::toIPSockAddr(kTlsAddr, std::stoi(kTlsPort))};