mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
remove unused StreamCallback
This commit is contained in:
parent
5029ab0934
commit
824f122a79
7 changed files with 13 additions and 43 deletions
|
@ -20,7 +20,6 @@ import (
|
||||||
"github.com/lucas-clemente/quic-go/crypto"
|
"github.com/lucas-clemente/quic-go/crypto"
|
||||||
"github.com/lucas-clemente/quic-go/handshake"
|
"github.com/lucas-clemente/quic-go/handshake"
|
||||||
"github.com/lucas-clemente/quic-go/protocol"
|
"github.com/lucas-clemente/quic-go/protocol"
|
||||||
"github.com/lucas-clemente/quic-go/utils"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type linkedConnection struct {
|
type linkedConnection struct {
|
||||||
|
@ -98,14 +97,14 @@ var _ = Describe("Benchmarks", func() {
|
||||||
connID := protocol.ConnectionID(mrand.Uint32())
|
connID := protocol.ConnectionID(mrand.Uint32())
|
||||||
|
|
||||||
c1 := newLinkedConnection(nil)
|
c1 := newLinkedConnection(nil)
|
||||||
session1I, err := newSession(c1, version, connID, nil, func(Session, utils.Stream) {}, func(id protocol.ConnectionID) {})
|
session1I, err := newSession(c1, version, connID, nil, func(id protocol.ConnectionID) {})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
Expect(err).NotTo(HaveOccurred())
|
Expect(err).NotTo(HaveOccurred())
|
||||||
}
|
}
|
||||||
session1 := session1I.(*session)
|
session1 := session1I.(*session)
|
||||||
|
|
||||||
c2 := newLinkedConnection(session1)
|
c2 := newLinkedConnection(session1)
|
||||||
session2I, err := newSession(c2, version, connID, nil, func(Session, utils.Stream) {}, func(id protocol.ConnectionID) {})
|
session2I, err := newSession(c2, version, connID, nil, func(id protocol.ConnectionID) {})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
Expect(err).NotTo(HaveOccurred())
|
Expect(err).NotTo(HaveOccurred())
|
||||||
}
|
}
|
||||||
|
|
|
@ -208,7 +208,7 @@ func (c *Client) handlePacket(packet []byte) error {
|
||||||
|
|
||||||
func (c *Client) createNewSession(negotiatedVersions []protocol.VersionNumber) error {
|
func (c *Client) createNewSession(negotiatedVersions []protocol.VersionNumber) error {
|
||||||
var err error
|
var err error
|
||||||
c.session, err = newClientSession(c.conn, c.addr, c.hostname, c.version, c.connectionID, c.tlsConfig, c.streamCallback, c.closeCallback, c.cryptoChangeCallback, negotiatedVersions)
|
c.session, err = newClientSession(c.conn, c.addr, c.hostname, c.version, c.connectionID, c.tlsConfig, c.closeCallback, c.cryptoChangeCallback, negotiatedVersions)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -217,8 +217,6 @@ func (c *Client) createNewSession(negotiatedVersions []protocol.VersionNumber) e
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Client) streamCallback(Session, utils.Stream) {}
|
|
||||||
|
|
||||||
func (c *Client) closeCallback(id protocol.ConnectionID) {
|
func (c *Client) closeCallback(id protocol.ConnectionID) {
|
||||||
utils.Infof("Connection %x closed.", id)
|
utils.Infof("Connection %x closed.", id)
|
||||||
}
|
}
|
||||||
|
|
|
@ -65,10 +65,6 @@ func NewClient(t *QuicRoundTripper, tlsConfig *tls.Config, hostname string) (*Cl
|
||||||
return c, nil
|
return c, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Client) handleStreamCb(session *quic.Session, stream utils.Stream) {
|
|
||||||
utils.Debugf("Handling stream %d", stream.StreamID())
|
|
||||||
}
|
|
||||||
|
|
||||||
func (c *Client) cryptoChangeCallback(isForwardSecure bool) {
|
func (c *Client) cryptoChangeCallback(isForwardSecure bool) {
|
||||||
c.cryptoChangedCond.L.Lock()
|
c.cryptoChangedCond.L.Lock()
|
||||||
defer c.cryptoChangedCond.L.Unlock()
|
defer c.cryptoChangedCond.L.Unlock()
|
||||||
|
|
|
@ -36,9 +36,7 @@ type server struct {
|
||||||
sessionsMutex sync.RWMutex
|
sessionsMutex sync.RWMutex
|
||||||
deleteClosedSessionsAfter time.Duration
|
deleteClosedSessionsAfter time.Duration
|
||||||
|
|
||||||
streamCallback StreamCallback
|
newSession func(conn connection, v protocol.VersionNumber, connectionID protocol.ConnectionID, sCfg *handshake.ServerConfig, closeCallback closeCallback) (packetHandler, error)
|
||||||
|
|
||||||
newSession func(conn connection, v protocol.VersionNumber, connectionID protocol.ConnectionID, sCfg *handshake.ServerConfig, streamCallback StreamCallback, closeCallback closeCallback) (packetHandler, error)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var _ Listener = &server{}
|
var _ Listener = &server{}
|
||||||
|
@ -60,7 +58,6 @@ func NewListener(config *Config) (Listener, error) {
|
||||||
config: config,
|
config: config,
|
||||||
certChain: certChain,
|
certChain: certChain,
|
||||||
scfg: scfg,
|
scfg: scfg,
|
||||||
streamCallback: func(Session, utils.Stream) {},
|
|
||||||
sessions: map[protocol.ConnectionID]packetHandler{},
|
sessions: map[protocol.ConnectionID]packetHandler{},
|
||||||
newSession: newSession,
|
newSession: newSession,
|
||||||
deleteClosedSessionsAfter: protocol.ClosedSessionDeleteTimeout,
|
deleteClosedSessionsAfter: protocol.ClosedSessionDeleteTimeout,
|
||||||
|
@ -195,7 +192,6 @@ func (s *server) handlePacket(pconn net.PacketConn, remoteAddr net.Addr, packet
|
||||||
version,
|
version,
|
||||||
hdr.ConnectionID,
|
hdr.ConnectionID,
|
||||||
s.scfg,
|
s.scfg,
|
||||||
s.streamCallback,
|
|
||||||
s.closeCallback,
|
s.closeCallback,
|
||||||
)
|
)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
|
@ -44,7 +44,7 @@ func (s *mockSession) RemoteAddr() net.Addr {
|
||||||
|
|
||||||
var _ Session = &mockSession{}
|
var _ Session = &mockSession{}
|
||||||
|
|
||||||
func newMockSession(conn connection, v protocol.VersionNumber, connectionID protocol.ConnectionID, sCfg *handshake.ServerConfig, streamCallback StreamCallback, closeCallback closeCallback) (packetHandler, error) {
|
func newMockSession(conn connection, v protocol.VersionNumber, connectionID protocol.ConnectionID, sCfg *handshake.ServerConfig, closeCallback closeCallback) (packetHandler, error) {
|
||||||
return &mockSession{
|
return &mockSession{
|
||||||
connectionID: connectionID,
|
connectionID: connectionID,
|
||||||
}, nil
|
}, nil
|
||||||
|
|
12
session.go
12
session.go
|
@ -35,9 +35,6 @@ var (
|
||||||
errSessionAlreadyClosed = errors.New("Cannot close session. It was already closed before.")
|
errSessionAlreadyClosed = errors.New("Cannot close session. It was already closed before.")
|
||||||
)
|
)
|
||||||
|
|
||||||
// StreamCallback gets a stream frame and returns a reply frame
|
|
||||||
type StreamCallback func(Session, utils.Stream)
|
|
||||||
|
|
||||||
// CryptoChangeCallback is called every time the encryption level changes
|
// CryptoChangeCallback is called every time the encryption level changes
|
||||||
// Once the callback has been called with isForwardSecure = true, it is guarantueed to not be called with isForwardSecure = false after that
|
// Once the callback has been called with isForwardSecure = true, it is guarantueed to not be called with isForwardSecure = false after that
|
||||||
type CryptoChangeCallback func(isForwardSecure bool)
|
type CryptoChangeCallback func(isForwardSecure bool)
|
||||||
|
@ -51,7 +48,6 @@ type session struct {
|
||||||
perspective protocol.Perspective
|
perspective protocol.Perspective
|
||||||
version protocol.VersionNumber
|
version protocol.VersionNumber
|
||||||
|
|
||||||
streamCallback StreamCallback
|
|
||||||
closeCallback closeCallback
|
closeCallback closeCallback
|
||||||
cryptoChangeCallback CryptoChangeCallback
|
cryptoChangeCallback CryptoChangeCallback
|
||||||
|
|
||||||
|
@ -103,14 +99,13 @@ type session struct {
|
||||||
var _ Session = &session{}
|
var _ Session = &session{}
|
||||||
|
|
||||||
// newSession makes a new session
|
// newSession makes a new session
|
||||||
func newSession(conn connection, v protocol.VersionNumber, connectionID protocol.ConnectionID, sCfg *handshake.ServerConfig, streamCallback StreamCallback, closeCallback closeCallback) (packetHandler, error) {
|
func newSession(conn connection, v protocol.VersionNumber, connectionID protocol.ConnectionID, sCfg *handshake.ServerConfig, closeCallback closeCallback) (packetHandler, error) {
|
||||||
s := &session{
|
s := &session{
|
||||||
conn: conn,
|
conn: conn,
|
||||||
connectionID: connectionID,
|
connectionID: connectionID,
|
||||||
perspective: protocol.PerspectiveServer,
|
perspective: protocol.PerspectiveServer,
|
||||||
version: v,
|
version: v,
|
||||||
|
|
||||||
streamCallback: streamCallback,
|
|
||||||
closeCallback: closeCallback,
|
closeCallback: closeCallback,
|
||||||
cryptoChangeCallback: func(bool) {},
|
cryptoChangeCallback: func(bool) {},
|
||||||
connectionParameters: handshake.NewConnectionParamatersManager(protocol.PerspectiveServer, v),
|
connectionParameters: handshake.NewConnectionParamatersManager(protocol.PerspectiveServer, v),
|
||||||
|
@ -137,14 +132,13 @@ func newSession(conn connection, v protocol.VersionNumber, connectionID protocol
|
||||||
return s, err
|
return s, err
|
||||||
}
|
}
|
||||||
|
|
||||||
func newClientSession(pconn net.PacketConn, addr net.Addr, hostname string, v protocol.VersionNumber, connectionID protocol.ConnectionID, tlsConfig *tls.Config, streamCallback StreamCallback, closeCallback closeCallback, cryptoChangeCallback CryptoChangeCallback, negotiatedVersions []protocol.VersionNumber) (*session, error) {
|
func newClientSession(pconn net.PacketConn, addr net.Addr, hostname string, v protocol.VersionNumber, connectionID protocol.ConnectionID, tlsConfig *tls.Config, closeCallback closeCallback, cryptoChangeCallback CryptoChangeCallback, negotiatedVersions []protocol.VersionNumber) (*session, error) {
|
||||||
s := &session{
|
s := &session{
|
||||||
conn: &conn{pconn: pconn, currentAddr: addr},
|
conn: &conn{pconn: pconn, currentAddr: addr},
|
||||||
connectionID: connectionID,
|
connectionID: connectionID,
|
||||||
perspective: protocol.PerspectiveClient,
|
perspective: protocol.PerspectiveClient,
|
||||||
version: v,
|
version: v,
|
||||||
|
|
||||||
streamCallback: streamCallback,
|
|
||||||
closeCallback: closeCallback,
|
closeCallback: closeCallback,
|
||||||
cryptoChangeCallback: cryptoChangeCallback,
|
cryptoChangeCallback: cryptoChangeCallback,
|
||||||
connectionParameters: handshake.NewConnectionParamatersManager(protocol.PerspectiveClient, v),
|
connectionParameters: handshake.NewConnectionParamatersManager(protocol.PerspectiveClient, v),
|
||||||
|
@ -708,8 +702,6 @@ func (s *session) newStream(id protocol.StreamID) (*stream, error) {
|
||||||
s.flowControlManager.NewStream(id, true)
|
s.flowControlManager.NewStream(id, true)
|
||||||
}
|
}
|
||||||
|
|
||||||
s.streamCallback(s, stream)
|
|
||||||
|
|
||||||
return stream, nil
|
return stream, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -116,7 +116,6 @@ var _ = Describe("Session", func() {
|
||||||
var (
|
var (
|
||||||
sess *session
|
sess *session
|
||||||
clientSess *session
|
clientSess *session
|
||||||
streamCallbackCalled bool
|
|
||||||
closeCallbackCalled bool
|
closeCallbackCalled bool
|
||||||
scfg *handshake.ServerConfig
|
scfg *handshake.ServerConfig
|
||||||
mconn *mockConnection
|
mconn *mockConnection
|
||||||
|
@ -125,7 +124,6 @@ var _ = Describe("Session", func() {
|
||||||
|
|
||||||
BeforeEach(func() {
|
BeforeEach(func() {
|
||||||
mconn = &mockConnection{}
|
mconn = &mockConnection{}
|
||||||
streamCallbackCalled = false
|
|
||||||
closeCallbackCalled = false
|
closeCallbackCalled = false
|
||||||
|
|
||||||
certChain := crypto.NewCertChain(testdata.GetTLSConfig())
|
certChain := crypto.NewCertChain(testdata.GetTLSConfig())
|
||||||
|
@ -138,7 +136,6 @@ var _ = Describe("Session", func() {
|
||||||
protocol.Version35,
|
protocol.Version35,
|
||||||
0,
|
0,
|
||||||
scfg,
|
scfg,
|
||||||
func(Session, utils.Stream) { streamCallbackCalled = true },
|
|
||||||
func(protocol.ConnectionID) { closeCallbackCalled = true },
|
func(protocol.ConnectionID) { closeCallbackCalled = true },
|
||||||
)
|
)
|
||||||
Expect(err).NotTo(HaveOccurred())
|
Expect(err).NotTo(HaveOccurred())
|
||||||
|
@ -155,7 +152,6 @@ var _ = Describe("Session", func() {
|
||||||
protocol.Version35,
|
protocol.Version35,
|
||||||
0,
|
0,
|
||||||
nil,
|
nil,
|
||||||
func(Session, utils.Stream) { streamCallbackCalled = true },
|
|
||||||
func(protocol.ConnectionID) { closeCallbackCalled = true },
|
func(protocol.ConnectionID) { closeCallbackCalled = true },
|
||||||
func(isForwardSecure bool) {},
|
func(isForwardSecure bool) {},
|
||||||
nil,
|
nil,
|
||||||
|
@ -172,7 +168,6 @@ var _ = Describe("Session", func() {
|
||||||
protocol.VersionWhatever,
|
protocol.VersionWhatever,
|
||||||
0,
|
0,
|
||||||
scfg,
|
scfg,
|
||||||
func(Session, utils.Stream) { streamCallbackCalled = true },
|
|
||||||
func(protocol.ConnectionID) { closeCallbackCalled = true },
|
func(protocol.ConnectionID) { closeCallbackCalled = true },
|
||||||
)
|
)
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
@ -188,7 +183,6 @@ var _ = Describe("Session", func() {
|
||||||
protocol.VersionWhatever,
|
protocol.VersionWhatever,
|
||||||
0,
|
0,
|
||||||
scfg,
|
scfg,
|
||||||
func(Session, utils.Stream) { streamCallbackCalled = true },
|
|
||||||
func(protocol.ConnectionID) { closeCallbackCalled = true },
|
func(protocol.ConnectionID) { closeCallbackCalled = true },
|
||||||
)
|
)
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
@ -202,7 +196,6 @@ var _ = Describe("Session", func() {
|
||||||
StreamID: 5,
|
StreamID: 5,
|
||||||
Data: []byte{0xde, 0xca, 0xfb, 0xad},
|
Data: []byte{0xde, 0xca, 0xfb, 0xad},
|
||||||
})
|
})
|
||||||
Expect(streamCallbackCalled).To(BeTrue())
|
|
||||||
p := make([]byte, 4)
|
p := make([]byte, 4)
|
||||||
str, err := sess.streamsMap.GetOrOpenStream(5)
|
str, err := sess.streamsMap.GetOrOpenStream(5)
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
@ -228,7 +221,6 @@ var _ = Describe("Session", func() {
|
||||||
Data: []byte{0xde, 0xca},
|
Data: []byte{0xde, 0xca},
|
||||||
})
|
})
|
||||||
numOpenStreams := len(sess.streamsMap.openStreams)
|
numOpenStreams := len(sess.streamsMap.openStreams)
|
||||||
Expect(streamCallbackCalled).To(BeTrue())
|
|
||||||
sess.handleStreamFrame(&frames.StreamFrame{
|
sess.handleStreamFrame(&frames.StreamFrame{
|
||||||
StreamID: 5,
|
StreamID: 5,
|
||||||
Offset: 2,
|
Offset: 2,
|
||||||
|
@ -262,7 +254,6 @@ var _ = Describe("Session", func() {
|
||||||
numOpenStreams := len(sess.streamsMap.openStreams)
|
numOpenStreams := len(sess.streamsMap.openStreams)
|
||||||
str, _ := sess.streamsMap.GetOrOpenStream(5)
|
str, _ := sess.streamsMap.GetOrOpenStream(5)
|
||||||
Expect(str).ToNot(BeNil())
|
Expect(str).ToNot(BeNil())
|
||||||
Expect(streamCallbackCalled).To(BeTrue())
|
|
||||||
p := make([]byte, 4)
|
p := make([]byte, 4)
|
||||||
_, err := str.Read(p)
|
_, err := str.Read(p)
|
||||||
Expect(err).To(MatchError(io.EOF))
|
Expect(err).To(MatchError(io.EOF))
|
||||||
|
@ -282,7 +273,6 @@ var _ = Describe("Session", func() {
|
||||||
numOpenStreams := len(sess.streamsMap.openStreams)
|
numOpenStreams := len(sess.streamsMap.openStreams)
|
||||||
str, _ := sess.streamsMap.GetOrOpenStream(5)
|
str, _ := sess.streamsMap.GetOrOpenStream(5)
|
||||||
Expect(str).ToNot(BeNil())
|
Expect(str).ToNot(BeNil())
|
||||||
Expect(streamCallbackCalled).To(BeTrue())
|
|
||||||
p := make([]byte, 4)
|
p := make([]byte, 4)
|
||||||
_, err := str.Read(p)
|
_, err := str.Read(p)
|
||||||
Expect(err).To(MatchError(io.EOF))
|
Expect(err).To(MatchError(io.EOF))
|
||||||
|
@ -315,7 +305,6 @@ var _ = Describe("Session", func() {
|
||||||
str, err := sess.streamsMap.GetOrOpenStream(5)
|
str, err := sess.streamsMap.GetOrOpenStream(5)
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
Expect(str).ToNot(BeNil())
|
Expect(str).ToNot(BeNil())
|
||||||
Expect(streamCallbackCalled).To(BeTrue())
|
|
||||||
p := make([]byte, 4)
|
p := make([]byte, 4)
|
||||||
_, err = str.Read(p)
|
_, err = str.Read(p)
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue