[client] Parse hostname
This commit is contained in:
parent
ad59968436
commit
fee16d8474
1 changed files with 3 additions and 3 deletions
|
@ -18,8 +18,8 @@ use coffer_common::coffer::{CofferShard, CofferValue};
|
||||||
#[derive(StructOpt, Debug)]
|
#[derive(StructOpt, Debug)]
|
||||||
struct Args {
|
struct Args {
|
||||||
/// Address of the coffer server
|
/// Address of the coffer server
|
||||||
#[structopt(short, long, parse(try_from_str), env = "COFFER_SERVER_ADDRESS", default_value = "127.0.0.1:9187")]
|
#[structopt(short, long, env = "COFFER_SERVER_ADDRESS", default_value = "127.0.0.1:9187")]
|
||||||
server_address: SocketAddr,
|
server_address: String,
|
||||||
|
|
||||||
#[structopt(short, long, parse(from_os_str), env = "COFFER_CLIENT_CERTIFICATE", hide_env_values = true)]
|
#[structopt(short, long, parse(from_os_str), env = "COFFER_CLIENT_CERTIFICATE", hide_env_values = true)]
|
||||||
certificate: PathBuf,
|
certificate: PathBuf,
|
||||||
|
@ -39,7 +39,7 @@ fn main() -> Result<(), Box<dyn Error>> {
|
||||||
let cert = Certificate::new_from_cbor(&args.certificate)?;
|
let cert = Certificate::new_from_cbor(&args.certificate)?;
|
||||||
|
|
||||||
debug!{"Connecting to coffer server"}
|
debug!{"Connecting to coffer server"}
|
||||||
let mut stream: TcpStream = TcpStream::connect(&args.server_address)?;
|
let mut stream: TcpStream = TcpStream::connect(args.server_address)?;
|
||||||
|
|
||||||
debug!{"Sending hello"}
|
debug!{"Sending hello"}
|
||||||
let hello = framed(0x00, cert.public_key());
|
let hello = framed(0x00, cert.public_key());
|
||||||
|
|
Loading…
Reference in a new issue