armeria-0.65.1
New features
-
Added more methods related with accessing the IP address of an
Endpoint. #1232assert Endpoint.of("example.com").hasIpAddr() == false; assert Endpoint.of("example.com").withIpAddr("1.2.3.4").hasIpAddr() == true; assert Endpoint.of("1.2.3.4").isIpAddrOnly() == true; assert Endpoint.of("::1").ipFamily() == StandardProtocolFamily.INET6;