mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
clean up dial functions
* add a context to all Dial functions * remove the explicit Dial{*}Context functions
This commit is contained in:
parent
d683b841c4
commit
aee7706d5d
32 changed files with 106 additions and 59 deletions
|
@ -77,6 +77,7 @@ var _ = Describe("Unidirectional Streams", func() {
|
|||
}()
|
||||
|
||||
client, err := quic.DialAddr(
|
||||
context.Background(),
|
||||
serverAddr,
|
||||
getTLSClientConfig(),
|
||||
getQuicConfig(nil),
|
||||
|
@ -95,6 +96,7 @@ var _ = Describe("Unidirectional Streams", func() {
|
|||
}()
|
||||
|
||||
client, err := quic.DialAddr(
|
||||
context.Background(),
|
||||
serverAddr,
|
||||
getTLSClientConfig(),
|
||||
getQuicConfig(nil),
|
||||
|
@ -121,6 +123,7 @@ var _ = Describe("Unidirectional Streams", func() {
|
|||
}()
|
||||
|
||||
client, err := quic.DialAddr(
|
||||
context.Background(),
|
||||
serverAddr,
|
||||
getTLSClientConfig(),
|
||||
getQuicConfig(nil),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue