mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
rename Connection.{Send,Receive}Message to {Send,Receive}Datagram (#4116)
This is more consistent with both the RFC and the rest of the API. For example, the option in the Config is already name EnableDatagrams, and the property in the ConnectionState is named SupportsDatagrams.
This commit is contained in:
parent
7884f87f82
commit
1c631cf9cb
8 changed files with 71 additions and 71 deletions
10
README.md
10
README.md
|
@ -159,18 +159,18 @@ On the receiver side, this is surfaced as a `quic.ApplicationError`.
|
||||||
|
|
||||||
Unreliable datagrams are a QUIC extension ([RFC 9221](https://datatracker.ietf.org/doc/html/rfc9221)) that is negotiated during the handshake. Support can be enabled by setting the `quic.Config.EnableDatagram` flag. Note that this doesn't guarantee that the peer also supports datagrams. Whether or not the feature negotiation succeeded can be learned from the `quic.ConnectionState.SupportsDatagrams` obtained from `quic.Connection.ConnectionState()`.
|
Unreliable datagrams are a QUIC extension ([RFC 9221](https://datatracker.ietf.org/doc/html/rfc9221)) that is negotiated during the handshake. Support can be enabled by setting the `quic.Config.EnableDatagram` flag. Note that this doesn't guarantee that the peer also supports datagrams. Whether or not the feature negotiation succeeded can be learned from the `quic.ConnectionState.SupportsDatagrams` obtained from `quic.Connection.ConnectionState()`.
|
||||||
|
|
||||||
QUIC DATAGRAMs are a new QUIC frame type sent in QUIC 1-RTT packets (i.e. after completion of the handshake). Therefore, they're end-to-end encrypted and congestion-controlled. However, if a DATAGRAM frame is deemed lost by QUIC's loss detection mechanism, they are not automatically retransmitted.
|
QUIC DATAGRAMs are a new QUIC frame type sent in QUIC 1-RTT packets (i.e. after completion of the handshake). Therefore, they're end-to-end encrypted and congestion-controlled. However, if a DATAGRAM frame is deemed lost by QUIC's loss detection mechanism, they are not retransmitted.
|
||||||
|
|
||||||
Datagrams are sent using the `SendMessage` method on the `quic.Connection`:
|
Datagrams are sent using the `SendDatagram` method on the `quic.Connection`:
|
||||||
|
|
||||||
```go
|
```go
|
||||||
conn.SendMessage([]byte("foobar"))
|
conn.SendDatagram([]byte("foobar"))
|
||||||
```
|
```
|
||||||
|
|
||||||
And received using `ReceiveMessage`:
|
And received using `ReceiveDatagram`:
|
||||||
|
|
||||||
```go
|
```go
|
||||||
msg, err := conn.ReceiveMessage()
|
msg, err := conn.ReceiveDatagram()
|
||||||
```
|
```
|
||||||
|
|
||||||
Note that this code path is currently not optimized. It works for datagrams that are sent occasionally, but it doesn't achieve the same throughput as writing data on a stream. Please get in touch on issue #3766 if your use case relies on high datagram throughput, or if you'd like to help fix this issue. There are also some restrictions regarding the maximum message size (see #3599).
|
Note that this code path is currently not optimized. It works for datagrams that are sent occasionally, but it doesn't achieve the same throughput as writing data on a stream. Please get in touch on issue #3766 if your use case relies on high datagram throughput, or if you'd like to help fix this issue. There are also some restrictions regarding the maximum message size (see #3599).
|
||||||
|
|
|
@ -2343,7 +2343,7 @@ func (s *connection) onStreamCompleted(id protocol.StreamID) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *connection) SendMessage(p []byte) error {
|
func (s *connection) SendDatagram(p []byte) error {
|
||||||
if !s.supportsDatagrams() {
|
if !s.supportsDatagrams() {
|
||||||
return errors.New("datagram support disabled")
|
return errors.New("datagram support disabled")
|
||||||
}
|
}
|
||||||
|
@ -2357,7 +2357,7 @@ func (s *connection) SendMessage(p []byte) error {
|
||||||
return s.datagramQueue.AddAndWait(f)
|
return s.datagramQueue.AddAndWait(f)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *connection) ReceiveMessage(ctx context.Context) ([]byte, error) {
|
func (s *connection) ReceiveDatagram(ctx context.Context) ([]byte, error) {
|
||||||
if !s.config.EnableDatagrams {
|
if !s.config.EnableDatagrams {
|
||||||
return nil, errors.New("datagram support disabled")
|
return nil, errors.New("datagram support disabled")
|
||||||
}
|
}
|
||||||
|
|
|
@ -57,7 +57,7 @@ var _ = Describe("Datagram test", func() {
|
||||||
defer wg.Done()
|
defer wg.Done()
|
||||||
b := make([]byte, 8)
|
b := make([]byte, 8)
|
||||||
binary.BigEndian.PutUint64(b, uint64(i))
|
binary.BigEndian.PutUint64(b, uint64(i))
|
||||||
Expect(conn.SendMessage(b)).To(Succeed())
|
Expect(conn.SendDatagram(b)).To(Succeed())
|
||||||
}(i)
|
}(i)
|
||||||
}
|
}
|
||||||
wg.Wait()
|
wg.Wait()
|
||||||
|
@ -120,7 +120,7 @@ var _ = Describe("Datagram test", func() {
|
||||||
for {
|
for {
|
||||||
// Close the connection if no message is received for 100 ms.
|
// Close the connection if no message is received for 100 ms.
|
||||||
timer := time.AfterFunc(scaleDuration(100*time.Millisecond), func() { conn.CloseWithError(0, "") })
|
timer := time.AfterFunc(scaleDuration(100*time.Millisecond), func() { conn.CloseWithError(0, "") })
|
||||||
if _, err := conn.ReceiveMessage(context.Background()); err != nil {
|
if _, err := conn.ReceiveDatagram(context.Background()); err != nil {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
timer.Stop()
|
timer.Stop()
|
||||||
|
@ -170,7 +170,7 @@ var _ = Describe("Datagram test", func() {
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
Expect(conn.ConnectionState().SupportsDatagrams).To(BeFalse())
|
Expect(conn.ConnectionState().SupportsDatagrams).To(BeFalse())
|
||||||
|
|
||||||
Expect(conn.SendMessage([]byte{0})).To(HaveOccurred())
|
Expect(conn.SendDatagram([]byte{0})).To(HaveOccurred())
|
||||||
|
|
||||||
close()
|
close()
|
||||||
conn.CloseWithError(0, "")
|
conn.CloseWithError(0, "")
|
||||||
|
|
|
@ -830,7 +830,7 @@ var _ = Describe("0-RTT", func() {
|
||||||
defer close(received)
|
defer close(received)
|
||||||
conn, err := ln.Accept(context.Background())
|
conn, err := ln.Accept(context.Background())
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
receivedMessage, err = conn.ReceiveMessage(context.Background())
|
receivedMessage, err = conn.ReceiveDatagram(context.Background())
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
Expect(conn.ConnectionState().Used0RTT).To(BeTrue())
|
Expect(conn.ConnectionState().Used0RTT).To(BeTrue())
|
||||||
}()
|
}()
|
||||||
|
@ -844,7 +844,7 @@ var _ = Describe("0-RTT", func() {
|
||||||
)
|
)
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
Expect(conn.ConnectionState().SupportsDatagrams).To(BeTrue())
|
Expect(conn.ConnectionState().SupportsDatagrams).To(BeTrue())
|
||||||
Expect(conn.SendMessage(sentMessage)).To(Succeed())
|
Expect(conn.SendDatagram(sentMessage)).To(Succeed())
|
||||||
<-conn.HandshakeComplete()
|
<-conn.HandshakeComplete()
|
||||||
<-received
|
<-received
|
||||||
|
|
||||||
|
@ -884,7 +884,7 @@ var _ = Describe("0-RTT", func() {
|
||||||
defer GinkgoRecover()
|
defer GinkgoRecover()
|
||||||
conn, err := ln.Accept(context.Background())
|
conn, err := ln.Accept(context.Background())
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
_, err = conn.ReceiveMessage(context.Background())
|
_, err = conn.ReceiveDatagram(context.Background())
|
||||||
Expect(err.Error()).To(Equal("datagram support disabled"))
|
Expect(err.Error()).To(Equal("datagram support disabled"))
|
||||||
<-conn.HandshakeComplete()
|
<-conn.HandshakeComplete()
|
||||||
Expect(conn.ConnectionState().Used0RTT).To(BeFalse())
|
Expect(conn.ConnectionState().Used0RTT).To(BeFalse())
|
||||||
|
@ -900,7 +900,7 @@ var _ = Describe("0-RTT", func() {
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
// the client can temporarily send datagrams but the server doesn't process them.
|
// the client can temporarily send datagrams but the server doesn't process them.
|
||||||
Expect(conn.ConnectionState().SupportsDatagrams).To(BeTrue())
|
Expect(conn.ConnectionState().SupportsDatagrams).To(BeTrue())
|
||||||
Expect(conn.SendMessage(make([]byte, 100))).To(Succeed())
|
Expect(conn.SendDatagram(make([]byte, 100))).To(Succeed())
|
||||||
<-conn.HandshakeComplete()
|
<-conn.HandshakeComplete()
|
||||||
|
|
||||||
Expect(conn.ConnectionState().SupportsDatagrams).To(BeFalse())
|
Expect(conn.ConnectionState().SupportsDatagrams).To(BeFalse())
|
||||||
|
|
|
@ -960,7 +960,7 @@ var _ = Describe("0-RTT", func() {
|
||||||
defer close(received)
|
defer close(received)
|
||||||
conn, err := ln.Accept(context.Background())
|
conn, err := ln.Accept(context.Background())
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
receivedMessage, err = conn.ReceiveMessage(context.Background())
|
receivedMessage, err = conn.ReceiveDatagram(context.Background())
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
Expect(conn.ConnectionState().Used0RTT).To(BeTrue())
|
Expect(conn.ConnectionState().Used0RTT).To(BeTrue())
|
||||||
}()
|
}()
|
||||||
|
@ -974,7 +974,7 @@ var _ = Describe("0-RTT", func() {
|
||||||
)
|
)
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
Expect(conn.ConnectionState().SupportsDatagrams).To(BeTrue())
|
Expect(conn.ConnectionState().SupportsDatagrams).To(BeTrue())
|
||||||
Expect(conn.SendMessage(sentMessage)).To(Succeed())
|
Expect(conn.SendDatagram(sentMessage)).To(Succeed())
|
||||||
<-conn.HandshakeComplete()
|
<-conn.HandshakeComplete()
|
||||||
<-received
|
<-received
|
||||||
|
|
||||||
|
@ -1016,7 +1016,7 @@ var _ = Describe("0-RTT", func() {
|
||||||
defer GinkgoRecover()
|
defer GinkgoRecover()
|
||||||
conn, err := ln.Accept(context.Background())
|
conn, err := ln.Accept(context.Background())
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
_, err = conn.ReceiveMessage(context.Background())
|
_, err = conn.ReceiveDatagram(context.Background())
|
||||||
Expect(err.Error()).To(Equal("datagram support disabled"))
|
Expect(err.Error()).To(Equal("datagram support disabled"))
|
||||||
<-conn.HandshakeComplete()
|
<-conn.HandshakeComplete()
|
||||||
Expect(conn.ConnectionState().Used0RTT).To(BeFalse())
|
Expect(conn.ConnectionState().Used0RTT).To(BeFalse())
|
||||||
|
@ -1032,7 +1032,7 @@ var _ = Describe("0-RTT", func() {
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
// the client can temporarily send datagrams but the server doesn't process them.
|
// the client can temporarily send datagrams but the server doesn't process them.
|
||||||
Expect(conn.ConnectionState().SupportsDatagrams).To(BeTrue())
|
Expect(conn.ConnectionState().SupportsDatagrams).To(BeTrue())
|
||||||
Expect(conn.SendMessage(make([]byte, 100))).To(Succeed())
|
Expect(conn.SendDatagram(make([]byte, 100))).To(Succeed())
|
||||||
<-conn.HandshakeComplete()
|
<-conn.HandshakeComplete()
|
||||||
|
|
||||||
Expect(conn.ConnectionState().SupportsDatagrams).To(BeFalse())
|
Expect(conn.ConnectionState().SupportsDatagrams).To(BeFalse())
|
||||||
|
|
10
interface.go
10
interface.go
|
@ -187,10 +187,10 @@ type Connection interface {
|
||||||
// Warning: This API should not be considered stable and might change soon.
|
// Warning: This API should not be considered stable and might change soon.
|
||||||
ConnectionState() ConnectionState
|
ConnectionState() ConnectionState
|
||||||
|
|
||||||
// SendMessage sends a message as a datagram, as specified in RFC 9221.
|
// SendDatagram sends a message as a datagram, as specified in RFC 9221.
|
||||||
SendMessage([]byte) error
|
SendDatagram([]byte) error
|
||||||
// ReceiveMessage gets a message received in a datagram, as specified in RFC 9221.
|
// ReceiveDatagram gets a message received in a datagram, as specified in RFC 9221.
|
||||||
ReceiveMessage(context.Context) ([]byte, error)
|
ReceiveDatagram(context.Context) ([]byte, error)
|
||||||
}
|
}
|
||||||
|
|
||||||
// An EarlyConnection is a connection that is handshaking.
|
// An EarlyConnection is a connection that is handshaking.
|
||||||
|
@ -338,7 +338,7 @@ type ConnectionState struct {
|
||||||
// SupportsDatagrams says if support for QUIC datagrams (RFC 9221) was negotiated.
|
// SupportsDatagrams says if support for QUIC datagrams (RFC 9221) was negotiated.
|
||||||
// This requires both nodes to support and enable the datagram extensions (via Config.EnableDatagrams).
|
// This requires both nodes to support and enable the datagram extensions (via Config.EnableDatagrams).
|
||||||
// If datagram support was negotiated, datagrams can be sent and received using the
|
// If datagram support was negotiated, datagrams can be sent and received using the
|
||||||
// SendMessage and ReceiveMessage methods on the Connection.
|
// SendDatagram and ReceiveDatagram methods on the Connection.
|
||||||
SupportsDatagrams bool
|
SupportsDatagrams bool
|
||||||
// Used0RTT says if 0-RTT resumption was used.
|
// Used0RTT says if 0-RTT resumption was used.
|
||||||
Used0RTT bool
|
Used0RTT bool
|
||||||
|
|
|
@ -503,41 +503,41 @@ func (c *EarlyConnectionOpenUniStreamSyncCall) DoAndReturn(f func(context.Contex
|
||||||
return c
|
return c
|
||||||
}
|
}
|
||||||
|
|
||||||
// ReceiveMessage mocks base method.
|
// ReceiveDatagram mocks base method.
|
||||||
func (m *MockEarlyConnection) ReceiveMessage(arg0 context.Context) ([]byte, error) {
|
func (m *MockEarlyConnection) ReceiveDatagram(arg0 context.Context) ([]byte, error) {
|
||||||
m.ctrl.T.Helper()
|
m.ctrl.T.Helper()
|
||||||
ret := m.ctrl.Call(m, "ReceiveMessage", arg0)
|
ret := m.ctrl.Call(m, "ReceiveDatagram", arg0)
|
||||||
ret0, _ := ret[0].([]byte)
|
ret0, _ := ret[0].([]byte)
|
||||||
ret1, _ := ret[1].(error)
|
ret1, _ := ret[1].(error)
|
||||||
return ret0, ret1
|
return ret0, ret1
|
||||||
}
|
}
|
||||||
|
|
||||||
// ReceiveMessage indicates an expected call of ReceiveMessage.
|
// ReceiveDatagram indicates an expected call of ReceiveDatagram.
|
||||||
func (mr *MockEarlyConnectionMockRecorder) ReceiveMessage(arg0 any) *EarlyConnectionReceiveMessageCall {
|
func (mr *MockEarlyConnectionMockRecorder) ReceiveDatagram(arg0 any) *EarlyConnectionReceiveDatagramCall {
|
||||||
mr.mock.ctrl.T.Helper()
|
mr.mock.ctrl.T.Helper()
|
||||||
call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ReceiveMessage", reflect.TypeOf((*MockEarlyConnection)(nil).ReceiveMessage), arg0)
|
call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ReceiveDatagram", reflect.TypeOf((*MockEarlyConnection)(nil).ReceiveDatagram), arg0)
|
||||||
return &EarlyConnectionReceiveMessageCall{Call: call}
|
return &EarlyConnectionReceiveDatagramCall{Call: call}
|
||||||
}
|
}
|
||||||
|
|
||||||
// EarlyConnectionReceiveMessageCall wrap *gomock.Call
|
// EarlyConnectionReceiveDatagramCall wrap *gomock.Call
|
||||||
type EarlyConnectionReceiveMessageCall struct {
|
type EarlyConnectionReceiveDatagramCall struct {
|
||||||
*gomock.Call
|
*gomock.Call
|
||||||
}
|
}
|
||||||
|
|
||||||
// Return rewrite *gomock.Call.Return
|
// Return rewrite *gomock.Call.Return
|
||||||
func (c *EarlyConnectionReceiveMessageCall) Return(arg0 []byte, arg1 error) *EarlyConnectionReceiveMessageCall {
|
func (c *EarlyConnectionReceiveDatagramCall) Return(arg0 []byte, arg1 error) *EarlyConnectionReceiveDatagramCall {
|
||||||
c.Call = c.Call.Return(arg0, arg1)
|
c.Call = c.Call.Return(arg0, arg1)
|
||||||
return c
|
return c
|
||||||
}
|
}
|
||||||
|
|
||||||
// Do rewrite *gomock.Call.Do
|
// Do rewrite *gomock.Call.Do
|
||||||
func (c *EarlyConnectionReceiveMessageCall) Do(f func(context.Context) ([]byte, error)) *EarlyConnectionReceiveMessageCall {
|
func (c *EarlyConnectionReceiveDatagramCall) Do(f func(context.Context) ([]byte, error)) *EarlyConnectionReceiveDatagramCall {
|
||||||
c.Call = c.Call.Do(f)
|
c.Call = c.Call.Do(f)
|
||||||
return c
|
return c
|
||||||
}
|
}
|
||||||
|
|
||||||
// DoAndReturn rewrite *gomock.Call.DoAndReturn
|
// DoAndReturn rewrite *gomock.Call.DoAndReturn
|
||||||
func (c *EarlyConnectionReceiveMessageCall) DoAndReturn(f func(context.Context) ([]byte, error)) *EarlyConnectionReceiveMessageCall {
|
func (c *EarlyConnectionReceiveDatagramCall) DoAndReturn(f func(context.Context) ([]byte, error)) *EarlyConnectionReceiveDatagramCall {
|
||||||
c.Call = c.Call.DoAndReturn(f)
|
c.Call = c.Call.DoAndReturn(f)
|
||||||
return c
|
return c
|
||||||
}
|
}
|
||||||
|
@ -580,40 +580,40 @@ func (c *EarlyConnectionRemoteAddrCall) DoAndReturn(f func() net.Addr) *EarlyCon
|
||||||
return c
|
return c
|
||||||
}
|
}
|
||||||
|
|
||||||
// SendMessage mocks base method.
|
// SendDatagram mocks base method.
|
||||||
func (m *MockEarlyConnection) SendMessage(arg0 []byte) error {
|
func (m *MockEarlyConnection) SendDatagram(arg0 []byte) error {
|
||||||
m.ctrl.T.Helper()
|
m.ctrl.T.Helper()
|
||||||
ret := m.ctrl.Call(m, "SendMessage", arg0)
|
ret := m.ctrl.Call(m, "SendDatagram", arg0)
|
||||||
ret0, _ := ret[0].(error)
|
ret0, _ := ret[0].(error)
|
||||||
return ret0
|
return ret0
|
||||||
}
|
}
|
||||||
|
|
||||||
// SendMessage indicates an expected call of SendMessage.
|
// SendDatagram indicates an expected call of SendDatagram.
|
||||||
func (mr *MockEarlyConnectionMockRecorder) SendMessage(arg0 any) *EarlyConnectionSendMessageCall {
|
func (mr *MockEarlyConnectionMockRecorder) SendDatagram(arg0 any) *EarlyConnectionSendDatagramCall {
|
||||||
mr.mock.ctrl.T.Helper()
|
mr.mock.ctrl.T.Helper()
|
||||||
call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SendMessage", reflect.TypeOf((*MockEarlyConnection)(nil).SendMessage), arg0)
|
call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SendDatagram", reflect.TypeOf((*MockEarlyConnection)(nil).SendDatagram), arg0)
|
||||||
return &EarlyConnectionSendMessageCall{Call: call}
|
return &EarlyConnectionSendDatagramCall{Call: call}
|
||||||
}
|
}
|
||||||
|
|
||||||
// EarlyConnectionSendMessageCall wrap *gomock.Call
|
// EarlyConnectionSendDatagramCall wrap *gomock.Call
|
||||||
type EarlyConnectionSendMessageCall struct {
|
type EarlyConnectionSendDatagramCall struct {
|
||||||
*gomock.Call
|
*gomock.Call
|
||||||
}
|
}
|
||||||
|
|
||||||
// Return rewrite *gomock.Call.Return
|
// Return rewrite *gomock.Call.Return
|
||||||
func (c *EarlyConnectionSendMessageCall) Return(arg0 error) *EarlyConnectionSendMessageCall {
|
func (c *EarlyConnectionSendDatagramCall) Return(arg0 error) *EarlyConnectionSendDatagramCall {
|
||||||
c.Call = c.Call.Return(arg0)
|
c.Call = c.Call.Return(arg0)
|
||||||
return c
|
return c
|
||||||
}
|
}
|
||||||
|
|
||||||
// Do rewrite *gomock.Call.Do
|
// Do rewrite *gomock.Call.Do
|
||||||
func (c *EarlyConnectionSendMessageCall) Do(f func([]byte) error) *EarlyConnectionSendMessageCall {
|
func (c *EarlyConnectionSendDatagramCall) Do(f func([]byte) error) *EarlyConnectionSendDatagramCall {
|
||||||
c.Call = c.Call.Do(f)
|
c.Call = c.Call.Do(f)
|
||||||
return c
|
return c
|
||||||
}
|
}
|
||||||
|
|
||||||
// DoAndReturn rewrite *gomock.Call.DoAndReturn
|
// DoAndReturn rewrite *gomock.Call.DoAndReturn
|
||||||
func (c *EarlyConnectionSendMessageCall) DoAndReturn(f func([]byte) error) *EarlyConnectionSendMessageCall {
|
func (c *EarlyConnectionSendDatagramCall) DoAndReturn(f func([]byte) error) *EarlyConnectionSendDatagramCall {
|
||||||
c.Call = c.Call.DoAndReturn(f)
|
c.Call = c.Call.DoAndReturn(f)
|
||||||
return c
|
return c
|
||||||
}
|
}
|
||||||
|
|
|
@ -541,41 +541,41 @@ func (c *QUICConnOpenUniStreamSyncCall) DoAndReturn(f func(context.Context) (Sen
|
||||||
return c
|
return c
|
||||||
}
|
}
|
||||||
|
|
||||||
// ReceiveMessage mocks base method.
|
// ReceiveDatagram mocks base method.
|
||||||
func (m *MockQUICConn) ReceiveMessage(arg0 context.Context) ([]byte, error) {
|
func (m *MockQUICConn) ReceiveDatagram(arg0 context.Context) ([]byte, error) {
|
||||||
m.ctrl.T.Helper()
|
m.ctrl.T.Helper()
|
||||||
ret := m.ctrl.Call(m, "ReceiveMessage", arg0)
|
ret := m.ctrl.Call(m, "ReceiveDatagram", arg0)
|
||||||
ret0, _ := ret[0].([]byte)
|
ret0, _ := ret[0].([]byte)
|
||||||
ret1, _ := ret[1].(error)
|
ret1, _ := ret[1].(error)
|
||||||
return ret0, ret1
|
return ret0, ret1
|
||||||
}
|
}
|
||||||
|
|
||||||
// ReceiveMessage indicates an expected call of ReceiveMessage.
|
// ReceiveDatagram indicates an expected call of ReceiveDatagram.
|
||||||
func (mr *MockQUICConnMockRecorder) ReceiveMessage(arg0 any) *QUICConnReceiveMessageCall {
|
func (mr *MockQUICConnMockRecorder) ReceiveDatagram(arg0 any) *QUICConnReceiveDatagramCall {
|
||||||
mr.mock.ctrl.T.Helper()
|
mr.mock.ctrl.T.Helper()
|
||||||
call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ReceiveMessage", reflect.TypeOf((*MockQUICConn)(nil).ReceiveMessage), arg0)
|
call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ReceiveDatagram", reflect.TypeOf((*MockQUICConn)(nil).ReceiveDatagram), arg0)
|
||||||
return &QUICConnReceiveMessageCall{Call: call}
|
return &QUICConnReceiveDatagramCall{Call: call}
|
||||||
}
|
}
|
||||||
|
|
||||||
// QUICConnReceiveMessageCall wrap *gomock.Call
|
// QUICConnReceiveDatagramCall wrap *gomock.Call
|
||||||
type QUICConnReceiveMessageCall struct {
|
type QUICConnReceiveDatagramCall struct {
|
||||||
*gomock.Call
|
*gomock.Call
|
||||||
}
|
}
|
||||||
|
|
||||||
// Return rewrite *gomock.Call.Return
|
// Return rewrite *gomock.Call.Return
|
||||||
func (c *QUICConnReceiveMessageCall) Return(arg0 []byte, arg1 error) *QUICConnReceiveMessageCall {
|
func (c *QUICConnReceiveDatagramCall) Return(arg0 []byte, arg1 error) *QUICConnReceiveDatagramCall {
|
||||||
c.Call = c.Call.Return(arg0, arg1)
|
c.Call = c.Call.Return(arg0, arg1)
|
||||||
return c
|
return c
|
||||||
}
|
}
|
||||||
|
|
||||||
// Do rewrite *gomock.Call.Do
|
// Do rewrite *gomock.Call.Do
|
||||||
func (c *QUICConnReceiveMessageCall) Do(f func(context.Context) ([]byte, error)) *QUICConnReceiveMessageCall {
|
func (c *QUICConnReceiveDatagramCall) Do(f func(context.Context) ([]byte, error)) *QUICConnReceiveDatagramCall {
|
||||||
c.Call = c.Call.Do(f)
|
c.Call = c.Call.Do(f)
|
||||||
return c
|
return c
|
||||||
}
|
}
|
||||||
|
|
||||||
// DoAndReturn rewrite *gomock.Call.DoAndReturn
|
// DoAndReturn rewrite *gomock.Call.DoAndReturn
|
||||||
func (c *QUICConnReceiveMessageCall) DoAndReturn(f func(context.Context) ([]byte, error)) *QUICConnReceiveMessageCall {
|
func (c *QUICConnReceiveDatagramCall) DoAndReturn(f func(context.Context) ([]byte, error)) *QUICConnReceiveDatagramCall {
|
||||||
c.Call = c.Call.DoAndReturn(f)
|
c.Call = c.Call.DoAndReturn(f)
|
||||||
return c
|
return c
|
||||||
}
|
}
|
||||||
|
@ -618,40 +618,40 @@ func (c *QUICConnRemoteAddrCall) DoAndReturn(f func() net.Addr) *QUICConnRemoteA
|
||||||
return c
|
return c
|
||||||
}
|
}
|
||||||
|
|
||||||
// SendMessage mocks base method.
|
// SendDatagram mocks base method.
|
||||||
func (m *MockQUICConn) SendMessage(arg0 []byte) error {
|
func (m *MockQUICConn) SendDatagram(arg0 []byte) error {
|
||||||
m.ctrl.T.Helper()
|
m.ctrl.T.Helper()
|
||||||
ret := m.ctrl.Call(m, "SendMessage", arg0)
|
ret := m.ctrl.Call(m, "SendDatagram", arg0)
|
||||||
ret0, _ := ret[0].(error)
|
ret0, _ := ret[0].(error)
|
||||||
return ret0
|
return ret0
|
||||||
}
|
}
|
||||||
|
|
||||||
// SendMessage indicates an expected call of SendMessage.
|
// SendDatagram indicates an expected call of SendDatagram.
|
||||||
func (mr *MockQUICConnMockRecorder) SendMessage(arg0 any) *QUICConnSendMessageCall {
|
func (mr *MockQUICConnMockRecorder) SendDatagram(arg0 any) *QUICConnSendDatagramCall {
|
||||||
mr.mock.ctrl.T.Helper()
|
mr.mock.ctrl.T.Helper()
|
||||||
call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SendMessage", reflect.TypeOf((*MockQUICConn)(nil).SendMessage), arg0)
|
call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SendDatagram", reflect.TypeOf((*MockQUICConn)(nil).SendDatagram), arg0)
|
||||||
return &QUICConnSendMessageCall{Call: call}
|
return &QUICConnSendDatagramCall{Call: call}
|
||||||
}
|
}
|
||||||
|
|
||||||
// QUICConnSendMessageCall wrap *gomock.Call
|
// QUICConnSendDatagramCall wrap *gomock.Call
|
||||||
type QUICConnSendMessageCall struct {
|
type QUICConnSendDatagramCall struct {
|
||||||
*gomock.Call
|
*gomock.Call
|
||||||
}
|
}
|
||||||
|
|
||||||
// Return rewrite *gomock.Call.Return
|
// Return rewrite *gomock.Call.Return
|
||||||
func (c *QUICConnSendMessageCall) Return(arg0 error) *QUICConnSendMessageCall {
|
func (c *QUICConnSendDatagramCall) Return(arg0 error) *QUICConnSendDatagramCall {
|
||||||
c.Call = c.Call.Return(arg0)
|
c.Call = c.Call.Return(arg0)
|
||||||
return c
|
return c
|
||||||
}
|
}
|
||||||
|
|
||||||
// Do rewrite *gomock.Call.Do
|
// Do rewrite *gomock.Call.Do
|
||||||
func (c *QUICConnSendMessageCall) Do(f func([]byte) error) *QUICConnSendMessageCall {
|
func (c *QUICConnSendDatagramCall) Do(f func([]byte) error) *QUICConnSendDatagramCall {
|
||||||
c.Call = c.Call.Do(f)
|
c.Call = c.Call.Do(f)
|
||||||
return c
|
return c
|
||||||
}
|
}
|
||||||
|
|
||||||
// DoAndReturn rewrite *gomock.Call.DoAndReturn
|
// DoAndReturn rewrite *gomock.Call.DoAndReturn
|
||||||
func (c *QUICConnSendMessageCall) DoAndReturn(f func([]byte) error) *QUICConnSendMessageCall {
|
func (c *QUICConnSendDatagramCall) DoAndReturn(f func([]byte) error) *QUICConnSendDatagramCall {
|
||||||
c.Call = c.Call.DoAndReturn(f)
|
c.Call = c.Call.DoAndReturn(f)
|
||||||
return c
|
return c
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue