mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
add a callback to client that is called after the version is negotiated
This commit is contained in:
parent
2377b3a111
commit
dc05de3312
3 changed files with 37 additions and 10 deletions
27
client.go
27
client.go
|
@ -24,9 +24,14 @@ type Client struct {
|
||||||
version protocol.VersionNumber
|
version protocol.VersionNumber
|
||||||
versionNegotiated bool
|
versionNegotiated bool
|
||||||
|
|
||||||
|
versionNegotiateCallback VersionNegotiateCallback
|
||||||
|
|
||||||
session packetHandler
|
session packetHandler
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// VersionNegotiateCallback is called once the client has a negotiated version
|
||||||
|
type VersionNegotiateCallback func() error
|
||||||
|
|
||||||
var errHostname = errors.New("Invalid hostname")
|
var errHostname = errors.New("Invalid hostname")
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
@ -35,7 +40,7 @@ var (
|
||||||
)
|
)
|
||||||
|
|
||||||
// NewClient makes a new client
|
// NewClient makes a new client
|
||||||
func NewClient(addr string) (*Client, error) {
|
func NewClient(addr string, versionNegotiateCallback VersionNegotiateCallback) (*Client, error) {
|
||||||
hostname, err := utils.HostnameFromAddr(addr)
|
hostname, err := utils.HostnameFromAddr(addr)
|
||||||
if err != nil || len(hostname) == 0 {
|
if err != nil || len(hostname) == 0 {
|
||||||
return nil, errHostname
|
return nil, errHostname
|
||||||
|
@ -62,11 +67,12 @@ func NewClient(addr string) (*Client, error) {
|
||||||
connectionID := protocol.ConnectionID(rand.Int63())
|
connectionID := protocol.ConnectionID(rand.Int63())
|
||||||
|
|
||||||
client := &Client{
|
client := &Client{
|
||||||
addr: udpAddr,
|
addr: udpAddr,
|
||||||
conn: conn,
|
conn: conn,
|
||||||
hostname: hostname,
|
hostname: hostname,
|
||||||
version: protocol.SupportedVersions[len(protocol.SupportedVersions)-1], // use the highest supported version by default
|
version: protocol.SupportedVersions[len(protocol.SupportedVersions)-1], // use the highest supported version by default
|
||||||
connectionID: connectionID,
|
connectionID: connectionID,
|
||||||
|
versionNegotiateCallback: versionNegotiateCallback,
|
||||||
}
|
}
|
||||||
|
|
||||||
utils.Infof("Starting new connection to %s (%s), connectionID %x, version %d", host, udpAddr.String(), connectionID, client.version)
|
utils.Infof("Starting new connection to %s (%s), connectionID %x, version %d", host, udpAddr.String(), connectionID, client.version)
|
||||||
|
@ -133,6 +139,10 @@ func (c *Client) handlePacket(packet []byte) error {
|
||||||
// if the server doesn't send a version negotiation packet, it supports the suggested version
|
// if the server doesn't send a version negotiation packet, it supports the suggested version
|
||||||
if !hdr.VersionFlag && !c.versionNegotiated {
|
if !hdr.VersionFlag && !c.versionNegotiated {
|
||||||
c.versionNegotiated = true
|
c.versionNegotiated = true
|
||||||
|
err = c.versionNegotiateCallback()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if hdr.VersionFlag {
|
if hdr.VersionFlag {
|
||||||
|
@ -151,11 +161,16 @@ func (c *Client) handlePacket(packet []byte) error {
|
||||||
utils.Infof("Switching to QUIC version %d", highestSupportedVersion)
|
utils.Infof("Switching to QUIC version %d", highestSupportedVersion)
|
||||||
c.version = highestSupportedVersion
|
c.version = highestSupportedVersion
|
||||||
c.versionNegotiated = true
|
c.versionNegotiated = true
|
||||||
|
|
||||||
c.session.Close(errCloseSessionForNewVersion)
|
c.session.Close(errCloseSessionForNewVersion)
|
||||||
err = c.createNewSession()
|
err = c.createNewSession()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
err = c.versionNegotiateCallback()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
return nil // version negotiation packets have no payload
|
return nil // version negotiation packets have no payload
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,11 +13,20 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
var _ = Describe("Client", func() {
|
var _ = Describe("Client", func() {
|
||||||
var client *Client
|
var (
|
||||||
var session *mockSession
|
client *Client
|
||||||
|
session *mockSession
|
||||||
|
versionNegotiateCallbackCalled bool
|
||||||
|
)
|
||||||
|
|
||||||
BeforeEach(func() {
|
BeforeEach(func() {
|
||||||
client = &Client{}
|
versionNegotiateCallbackCalled = false
|
||||||
|
client = &Client{
|
||||||
|
versionNegotiateCallback: func() error {
|
||||||
|
versionNegotiateCallbackCalled = true
|
||||||
|
return nil
|
||||||
|
},
|
||||||
|
}
|
||||||
session = &mockSession{connectionID: 0x1337}
|
session = &mockSession{connectionID: 0x1337}
|
||||||
client.connectionID = 0x1337
|
client.connectionID = 0x1337
|
||||||
client.session = session
|
client.session = session
|
||||||
|
@ -162,6 +171,7 @@ var _ = Describe("Client", func() {
|
||||||
err = client.handlePacket(b.Bytes())
|
err = client.handlePacket(b.Bytes())
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
Expect(client.versionNegotiated).To(BeTrue())
|
Expect(client.versionNegotiated).To(BeTrue())
|
||||||
|
Expect(versionNegotiateCallbackCalled).To(BeTrue())
|
||||||
})
|
})
|
||||||
|
|
||||||
It("changes the version after receiving a version negotiation packet", func() {
|
It("changes the version after receiving a version negotiation packet", func() {
|
||||||
|
@ -172,6 +182,7 @@ var _ = Describe("Client", func() {
|
||||||
err := client.handlePacket(getVersionNegotiation([]protocol.VersionNumber{newVersion}))
|
err := client.handlePacket(getVersionNegotiation([]protocol.VersionNumber{newVersion}))
|
||||||
Expect(client.version).To(Equal(newVersion))
|
Expect(client.version).To(Equal(newVersion))
|
||||||
Expect(client.versionNegotiated).To(BeTrue())
|
Expect(client.versionNegotiated).To(BeTrue())
|
||||||
|
Expect(versionNegotiateCallbackCalled).To(BeTrue())
|
||||||
// it swapped the sessions
|
// it swapped the sessions
|
||||||
Expect(client.session).ToNot(Equal(session))
|
Expect(client.session).ToNot(Equal(session))
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
@ -195,6 +206,7 @@ var _ = Describe("Client", func() {
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
Expect(client.versionNegotiated).To(BeTrue())
|
Expect(client.versionNegotiated).To(BeTrue())
|
||||||
Expect(session.packetCount).To(BeZero())
|
Expect(session.packetCount).To(BeZero())
|
||||||
|
Expect(versionNegotiateCallbackCalled).To(BeFalse())
|
||||||
})
|
})
|
||||||
|
|
||||||
It("errors if the server should have accepted the offered version", func() {
|
It("errors if the server should have accepted the offered version", func() {
|
||||||
|
|
|
@ -10,7 +10,7 @@ func main() {
|
||||||
|
|
||||||
utils.SetLogLevel(utils.LogLevelDebug)
|
utils.SetLogLevel(utils.LogLevelDebug)
|
||||||
|
|
||||||
client, err := quic.NewClient(addr)
|
client, err := quic.NewClient(addr, func() error { return nil })
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue