Add parts of custom oscur0 conn

This commit is contained in:
Mingye Chen 2024-12-15 16:12:15 -07:00
parent 61f3a514ad
commit ff7775dfe3

36
u_conn_oscur0.go Normal file
View file

@ -0,0 +1,36 @@
package quic
import (
"net"
"github.com/refraction-networking/uquic/internal/protocol"
"github.com/refraction-networking/uquic/internal/utils"
"github.com/refraction-networking/uquic/logging"
)
func oscur0ServerConn(pconn net.PacketConn, remoteAddr net.Addr) (Connection, error) {
c := &connection{}
c.handshakeDestConnID = protocol.ParseConnectionID([]uint8{38, 67, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0})
c.origDestConnID = protocol.ParseConnectionID([]uint8{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0})
c.retrySrcConnID = nil
c.srcConnIDLen = 4
c.perspective = logging.PerspectiveServer
c.version = Version1
rconn, err := wrapConn(pconn)
if err != nil {
return nil, err
}
c.conn = newSendConn(rconn, remoteAddr, packetInfo{}, utils.DefaultLogger)
c.sendQueue = newSendQueue(c.conn)
c.streamsMap = newStreamsMap(c, c.newFlowController, 100, 100, c.perspective)
handlermap := newPacketHandlerMap(c.statelessReset)
c.connIDManager = newConnIDManager(
c.origDestConnID,
func(token protocol.StatelessResetToken) { runner.AddResetToken(token, s) },
runner.RemoveResetToken,
s.queueControlFrame,
)
return c, nil
}