mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
put the session in the packet handler map directly (for client sessions)
This commit is contained in:
parent
953f3472cf
commit
fd5f555f36
2 changed files with 1 additions and 41 deletions
37
client.go
37
client.go
|
@ -44,8 +44,6 @@ type client struct {
|
||||||
logger utils.Logger
|
logger utils.Logger
|
||||||
}
|
}
|
||||||
|
|
||||||
var _ packetHandler = &client{}
|
|
||||||
|
|
||||||
var (
|
var (
|
||||||
// make it possible to mock connection ID generation in the tests
|
// make it possible to mock connection ID generation in the tests
|
||||||
generateConnectionID = protocol.GenerateConnectionID
|
generateConnectionID = protocol.GenerateConnectionID
|
||||||
|
@ -266,7 +264,7 @@ func (c *client) dial(ctx context.Context) error {
|
||||||
c.version,
|
c.version,
|
||||||
)
|
)
|
||||||
c.mutex.Unlock()
|
c.mutex.Unlock()
|
||||||
c.packetHandlers.Add(c.srcConnID, c)
|
c.packetHandlers.Add(c.srcConnID, c.session)
|
||||||
|
|
||||||
errorChan := make(chan error, 1)
|
errorChan := make(chan error, 1)
|
||||||
go func() {
|
go func() {
|
||||||
|
@ -305,36 +303,3 @@ func (c *client) dial(ctx context.Context) error {
|
||||||
return nil
|
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
|
|
||||||
}
|
|
||||||
|
|
|
@ -634,9 +634,4 @@ var _ = Describe("Client", func() {
|
||||||
Expect(counter).To(Equal(2))
|
Expect(counter).To(Equal(2))
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
It("tells its version", func() {
|
|
||||||
Expect(cl.version).ToNot(BeZero())
|
|
||||||
Expect(cl.GetVersion()).To(Equal(cl.version))
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue