mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
simplify connection handling for the client
This commit is contained in:
parent
7a0ef5f867
commit
5544f0f9a1
5 changed files with 34 additions and 70 deletions
|
@ -17,7 +17,9 @@ var _ = Describe("Connection (for sending packets)", func() {
|
|||
BeforeEach(func() {
|
||||
addr = &net.UDPAddr{IP: net.IPv4(192, 168, 100, 200), Port: 1337}
|
||||
packetConn = NewMockPacketConn(mockCtrl)
|
||||
c = newSendPconn(packetConn, addr)
|
||||
rawConn, err := wrapConn(packetConn)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
c = newSendConn(rawConn, addr, nil)
|
||||
})
|
||||
|
||||
It("writes", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue