mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
remove the host parameter from all dial functions
This commit is contained in:
parent
ea721c9c75
commit
d683b841c4
14 changed files with 43 additions and 237 deletions
|
@ -152,11 +152,12 @@ var _ = Describe("Handshake tests", func() {
|
|||
runServer(getTLSConfig())
|
||||
conn, err := net.ListenUDP("udp", nil)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
conf := getTLSClientConfig()
|
||||
conf.ServerName = "foo.bar"
|
||||
_, err = quic.Dial(
|
||||
conn,
|
||||
server.Addr(),
|
||||
"foo.bar",
|
||||
getTLSClientConfig(),
|
||||
conf,
|
||||
getQuicConfig(nil),
|
||||
)
|
||||
Expect(err).To(HaveOccurred())
|
||||
|
@ -222,13 +223,7 @@ var _ = Describe("Handshake tests", func() {
|
|||
remoteAddr := fmt.Sprintf("localhost:%d", server.Addr().(*net.UDPAddr).Port)
|
||||
raddr, err := net.ResolveUDPAddr("udp", remoteAddr)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
return quic.Dial(
|
||||
pconn,
|
||||
raddr,
|
||||
remoteAddr,
|
||||
getTLSClientConfig(),
|
||||
nil,
|
||||
)
|
||||
return quic.Dial(pconn, raddr, getTLSClientConfig(), nil)
|
||||
}
|
||||
|
||||
BeforeEach(func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue