private void Connect() { var host = uri.Host; var port = uri.Port; client.Connect($"{host}", port); conn = quiche.Connect(uri.Authority); Debug.Log( $"connecting to {uri.Authority} from {client.Client.LocalEndPoint} " + $"with scid {quiche.HexDump}"); // initial send buf = new byte[QuicheClient.MAX_DATAGRAM_SIZE]; int write = conn.Send(buf); client.Send(buf, write); }
// Start is called before the first frame update void Start() { uri = new Uri(urlString); Debug.Log(QuicheVersion.GetVersion()); if (isDebugLog) { QuicheDebug.EnableDebugLogging((line, argp) => { Debug.Log(line); }); } udpClient = new UdpClient(); quicheClient = new QuicheClient(CreateQuicheConfig()); udpClient.Connect($"{uri.Host}", uri.Port); quicheConn = quicheClient.Connect(uri.Authority); Debug.Log( $"connecting to {uri.Authority} from {udpClient.Client.LocalEndPoint} " + $"with scid {quicheClient.HexDump}"); // initial send int write = quicheConn.Send(buf); udpClient.Send(buf, write); h3Config = new H3Config(); // Prepare request. var reqList = new H3Header[] { new H3Header(":method", "GET"), new H3Header(":scheme", "https"), new H3Header(":authority", uri.Host), new H3Header(":path", uri.PathAndQuery), new H3Header("user-agent", "unity-quiche"), }.ToList(); // TODO Add custom headers to the request. // TODO Add body body = null; if (body != null) { reqList.Add(new H3Header( "content-length", $"{body.Length}")); } req = reqList.ToArray(); }