mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
62 lines
1.3 KiB
Go
62 lines
1.3 KiB
Go
package quic
|
|
|
|
import (
|
|
"context"
|
|
"net"
|
|
"os"
|
|
|
|
tls "github.com/refraction-networking/utls"
|
|
)
|
|
|
|
func Oscur0Client(pconn net.PacketConn, addr net.Addr, oscur0Conf *Oscur0Config) (Connection, error) {
|
|
|
|
keyLogWriter, err := os.Create("./client_keylog.txt")
|
|
|
|
quicSpec, err := QUICID2Spec(QUICFirefox_116)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
tp := UTransport{
|
|
Transport: &Transport{
|
|
Conn: pconn,
|
|
ConnectionIDLength: len(oscur0Conf.ClientConnID),
|
|
},
|
|
QUICSpec: &quicSpec,
|
|
}
|
|
|
|
econn, err := tp.dialOscur0(context.Background(), addr, "", &tls.Config{
|
|
KeyLogWriter: keyLogWriter,
|
|
NextProtos: []string{"h3"},
|
|
}, &Config{}, false, oscur0Conf)
|
|
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return econn, nil
|
|
}
|
|
|
|
func Oscur0Server(pconn net.PacketConn, addr net.Addr, oscur0Conf *Oscur0Config) (Connection, error) {
|
|
keyLogWriter, err := os.Create("./server_keylog.txt")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
tp := Transport{
|
|
Conn: pconn,
|
|
ConnectionIDLength: len(oscur0Conf.ClientConnID),
|
|
}
|
|
|
|
return tp.Oscur0Accept(addr, &tls.Config{
|
|
NextProtos: []string{"h3"},
|
|
KeyLogWriter: keyLogWriter,
|
|
}, &Config{}, oscur0Conf)
|
|
}
|
|
|
|
type Oscur0Config struct {
|
|
ReadKey []byte
|
|
WriteKey []byte
|
|
ClientConnID []byte
|
|
ServerConnID []byte
|
|
}
|