put the session in the packet handler map directly (for client sessions)

This commit is contained in:
Marten Seemann 2020-07-09 20:21:48 +07:00
parent 953f3472cf
commit fd5f555f36
2 changed files with 1 additions and 41 deletions

View file

@ -44,8 +44,6 @@ type client struct {
logger utils.Logger
}
var _ packetHandler = &client{}
var (
// make it possible to mock connection ID generation in the tests
generateConnectionID = protocol.GenerateConnectionID
@ -266,7 +264,7 @@ func (c *client) dial(ctx context.Context) error {
c.version,
)
c.mutex.Unlock()
c.packetHandlers.Add(c.srcConnID, c)
c.packetHandlers.Add(c.srcConnID, c.session)
errorChan := make(chan error, 1)
go func() {
@ -305,36 +303,3 @@ func (c *client) dial(ctx context.Context) error {
return nil
}
}
func (c *client) handlePacket(p *receivedPacket) {
c.session.handlePacket(p)
}
func (c *client) shutdown() {
c.mutex.Lock()
defer c.mutex.Unlock()
if c.session == nil {
return
}
c.session.shutdown()
}
func (c *client) destroy(e error) {
c.mutex.Lock()
defer c.mutex.Unlock()
if c.session == nil {
return
}
c.session.destroy(e)
}
func (c *client) GetVersion() protocol.VersionNumber {
c.mutex.Lock()
v := c.version
c.mutex.Unlock()
return v
}
func (c *client) getPerspective() protocol.Perspective {
return protocol.PerspectiveClient
}

View file

@ -634,9 +634,4 @@ var _ = Describe("Client", func() {
Expect(counter).To(Equal(2))
})
})
It("tells its version", func() {
Expect(cl.version).ToNot(BeZero())
Expect(cl.GetVersion()).To(Equal(cl.version))
})
})