删除一直未实现的Unix协议相关内容

This commit is contained in:
GoEdgeLab
2024-04-14 17:15:38 +08:00
parent be296bd0e0
commit d453416d5f
19 changed files with 1277 additions and 1534 deletions

View File

@@ -27,12 +27,6 @@ func TestServerAddressGroup_Protocol(t *testing.T) {
a.IsTrue(group.Protocol() == ProtocolHTTP)
a.IsTrue(group.Addr() == "127.0.0.1:1234")
}
{
group := NewServerAddressGroup("unix:/tmp/my.sock")
a.IsTrue(group.Protocol() == ProtocolUnix)
a.IsTrue(group.Addr() == "/tmp/my.sock")
}
}
func TestServerAddressGroup_MatchServerName(t *testing.T) {