mirror of
https://github.com/XTLS/Xray-core.git
synced 2025-04-03 13:53:34 +03:00
Add multi buffer reader
This commit is contained in:
parent
7c78408df9
commit
33acf3c2b6
2 changed files with 31 additions and 3 deletions
|
@ -19,6 +19,7 @@ type interConn struct {
|
||||||
quicConn quic.Connection // small udp packet can be sent with Datagram directly
|
quicConn quic.Connection // small udp packet can be sent with Datagram directly
|
||||||
streams []quic.Stream // other packets can be sent via steam, it offer mux, reliability, fragmentation and ordering
|
streams []quic.Stream // other packets can be sent via steam, it offer mux, reliability, fragmentation and ordering
|
||||||
readChannel chan readResult
|
readChannel chan readResult
|
||||||
|
reader buf.MultiBufferContainer
|
||||||
done *done.Instance
|
done *done.Instance
|
||||||
local net.Addr
|
local net.Addr
|
||||||
remote net.Addr
|
remote net.Addr
|
||||||
|
@ -34,6 +35,7 @@ func NewConnInitReader(ctx context.Context, quicConn quic.Connection, done *done
|
||||||
ctx: ctx,
|
ctx: ctx,
|
||||||
quicConn: quicConn,
|
quicConn: quicConn,
|
||||||
readChannel: make(chan readResult),
|
readChannel: make(chan readResult),
|
||||||
|
reader: buf.MultiBufferContainer{},
|
||||||
done: done,
|
done: done,
|
||||||
local: quicConn.LocalAddr(),
|
local: quicConn.LocalAddr(),
|
||||||
remote: remote,
|
remote: remote,
|
||||||
|
@ -81,13 +83,18 @@ func (c *interConn) acceptStreams() {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *interConn) Read(b []byte) (int, error) {
|
func (c *interConn) Read(b []byte) (int, error) {
|
||||||
|
if c.reader.MultiBuffer.Len() > 0 {
|
||||||
|
return c.reader.Read(b)
|
||||||
|
}
|
||||||
received := <- c.readChannel
|
received := <- c.readChannel
|
||||||
if received.err != nil {
|
if received.err != nil {
|
||||||
return 0, received.err
|
return 0, received.err
|
||||||
}
|
}
|
||||||
nBytes := copy(b, received.buffer[:])
|
buffer := buf.New()
|
||||||
errors.LogInfo(c.ctx, "Read copy ", nBytes)
|
buffer.Write(received.buffer)
|
||||||
return nBytes, nil
|
c.reader.MultiBuffer = append(c.reader.MultiBuffer, buffer)
|
||||||
|
errors.LogInfo(c.ctx, "Read copy ", len(received.buffer))
|
||||||
|
return c.reader.Read(b)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *interConn) WriteMultiBuffer(mb buf.MultiBuffer) error {
|
func (c *interConn) WriteMultiBuffer(mb buf.MultiBuffer) error {
|
||||||
|
@ -98,6 +105,23 @@ func (c *interConn) WriteMultiBuffer(mb buf.MultiBuffer) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *interConn) Write(b []byte) (int, error) {
|
func (c *interConn) Write(b []byte) (int, error) {
|
||||||
|
if len(b) > 1240 { // TODO: why quic-go increase internal MTU causing packet loss?
|
||||||
|
if len(c.streams) < MaxIncomingStreams {
|
||||||
|
stream, err := c.quicConn.OpenStream()
|
||||||
|
errors.LogInfo(c.ctx, "Write OpenStream ", err)
|
||||||
|
if err == nil {
|
||||||
|
c.streams = append(c.streams, stream)
|
||||||
|
} else {
|
||||||
|
errors.LogInfoInner(c.ctx, err, "failed to openStream: ")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
currentStream++;
|
||||||
|
if currentStream > len(c.streams) - 1 {
|
||||||
|
currentStream = 0;
|
||||||
|
}
|
||||||
|
errors.LogInfo(c.ctx, "Write stream ", len(b), currentStream, len(c.streams))
|
||||||
|
return c.streams[currentStream].Write(b)
|
||||||
|
}
|
||||||
var err = c.quicConn.SendDatagram(b)
|
var err = c.quicConn.SendDatagram(b)
|
||||||
errors.LogInfo(c.ctx, "Write SendDatagram ", len(b), err)
|
errors.LogInfo(c.ctx, "Write SendDatagram ", len(b), err)
|
||||||
if _, ok := err.(*quic.DatagramTooLargeError); ok {
|
if _, ok := err.(*quic.DatagramTooLargeError); ok {
|
||||||
|
|
|
@ -22,6 +22,10 @@ func TestShortQuicConnection(t *testing.T) {
|
||||||
testQuicConnection(t, 1024)
|
testQuicConnection(t, 1024)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestAroundMTUQuicConnection(t *testing.T) {
|
||||||
|
testQuicConnection(t, 1247)
|
||||||
|
}
|
||||||
|
|
||||||
func TestLongQuicConnection(t *testing.T) {
|
func TestLongQuicConnection(t *testing.T) {
|
||||||
testQuicConnection(t, 1500)
|
testQuicConnection(t, 1500)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue