add a LocalAddr to the Session

This commit is contained in:
Marten Seemann 2017-03-10 00:07:27 +07:00
parent 1b8334c344
commit 34b688b3b9
No known key found for this signature in database
GPG key ID: 3603F40B121FCDEA
8 changed files with 28 additions and 0 deletions

View file

@ -63,6 +63,7 @@ func (c *linkedConnection) Write(p []byte) error {
func (c *linkedConnection) Read(p []byte) (int, net.Addr, error) { panic("not implemented") }
func (*linkedConnection) SetCurrentRemoteAddr(addr net.Addr) {}
func (*linkedConnection) LocalAddr() net.Addr { panic("not implemented") }
func (*linkedConnection) RemoteAddr() net.Addr { return &net.UDPAddr{} }
func (c *linkedConnection) Close() error { return nil }

View file

@ -9,6 +9,7 @@ type connection interface {
Write([]byte) error
Read([]byte) (int, net.Addr, error)
Close() error
LocalAddr() net.Addr
RemoteAddr() net.Addr
SetCurrentRemoteAddr(net.Addr)
}
@ -37,6 +38,10 @@ func (c *conn) SetCurrentRemoteAddr(addr net.Addr) {
c.mutex.Unlock()
}
func (c *conn) LocalAddr() net.Addr {
return c.pconn.LocalAddr()
}
func (c *conn) RemoteAddr() net.Addr {
c.mutex.RLock()
addr := c.currentAddr

View file

@ -82,6 +82,15 @@ var _ = Describe("Connection", func() {
Expect(c.RemoteAddr().String()).To(Equal("192.168.100.200:1337"))
})
It("gets the local address", func() {
addr := &net.UDPAddr{
IP: net.IPv4(192, 168, 0, 1),
Port: 1234,
}
packetConn.addr = addr
Expect(c.LocalAddr()).To(Equal(addr))
})
It("changes the remote address", func() {
addr := &net.UDPAddr{
IP: net.IPv4(127, 0, 0, 1),

View file

@ -56,6 +56,9 @@ func (s *mockSession) Close(e error) error {
s.closedWithError = e
return nil
}
func (s *mockSession) LocalAddr() net.Addr {
panic("not implemented")
}
func (s *mockSession) RemoteAddr() net.Addr {
return &net.UDPAddr{IP: []byte{127, 0, 0, 1}, Port: 42}
}

View file

@ -30,6 +30,8 @@ type Session interface {
// OpenStreamSync opens a new QUIC stream, blocking until the peer's concurrent stream limit allows a new stream to be opened.
// It always picks the smallest possible stream ID.
OpenStreamSync() (Stream, error)
// LocalAddr returns the local address.
LocalAddr() net.Addr
// RemoteAddr returns the address of the peer.
RemoteAddr() net.Addr
// Close closes the connection. The error will be sent to the remote peer in a CONNECTION_CLOSE frame. An error value of nil is allowed and will cause a normal PeerGoingAway to be sent.

View file

@ -42,6 +42,9 @@ func (s *mockSession) OpenStream() (Stream, error) {
func (s *mockSession) OpenStreamSync() (Stream, error) {
panic("not implemented")
}
func (s *mockSession) LocalAddr() net.Addr {
panic("not implemented")
}
func (s *mockSession) RemoteAddr() net.Addr {
panic("not implemented")
}

View file

@ -814,6 +814,10 @@ func (s *session) ackAlarmChanged(t time.Time) {
s.maybeResetTimer()
}
func (s *session) LocalAddr() net.Addr {
return s.conn.LocalAddr()
}
// RemoteAddr returns the net.Addr of the client
func (s *session) RemoteAddr() net.Addr {
return s.conn.RemoteAddr()

View file

@ -39,6 +39,7 @@ func (m *mockConnection) Read([]byte) (int, net.Addr, error) { panic("not implem
func (m *mockConnection) SetCurrentRemoteAddr(addr net.Addr) {
m.remoteAddr = addr
}
func (*mockConnection) LocalAddr() net.Addr { panic("not implemented") }
func (*mockConnection) RemoteAddr() net.Addr { return &net.UDPAddr{} }
func (*mockConnection) Close() error { panic("not implemented") }