fix P2 and P4 to use the default cert path and print the client port for easier testing
parent
2b60396a26
commit
fc6a9c9e1e
|
@ -24,7 +24,7 @@ async fn main () -> anyhow::Result <()> {
|
|||
|
||||
let opt = Opt::from_args ();
|
||||
|
||||
let server_cert = tokio::fs::read ("quic_server.crt").await?;
|
||||
let server_cert = tokio::fs::read ("ptth_quic_output/quic_server.crt").await?;
|
||||
let relay_addr = opt.relay_addr.unwrap_or_else (|| String::from ("127.0.0.1:30380")).parse ()?;
|
||||
let endpoint = make_client_endpoint ("0.0.0.0:0".parse ()?, &[&server_cert])?;
|
||||
|
||||
|
@ -83,7 +83,7 @@ async fn main () -> anyhow::Result <()> {
|
|||
Ok::<_, anyhow::Error> (())
|
||||
});
|
||||
|
||||
debug! ("Accepting local TCP connections from P1");
|
||||
debug! ("Accepting local TCP connections from P1 at {}", client_tcp_port);
|
||||
|
||||
task_tcp_server.await??;
|
||||
|
||||
|
|
|
@ -74,7 +74,7 @@ impl Opt {
|
|||
|
||||
let relay_cert: Vec <u8> = match self.cert_url.as_ref () {
|
||||
Some (url) => reqwest::get (url).await?.bytes ().await?.into_iter ().collect (),
|
||||
None => tokio::fs::read ("quic_server.crt").await?,
|
||||
None => tokio::fs::read ("ptth_quic_output/quic_server.crt").await?,
|
||||
};
|
||||
|
||||
Ok (Config {
|
||||
|
|
Loading…
Reference in New Issue