We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ee06ca commit 10c002dCopy full SHA for 10c002d
src/rust/lib_ccxr/src/net/target.rs
@@ -82,7 +82,8 @@ impl<'a> SendTarget<'a> {
82
"Unable to connect, address passed is null\n"
83
);
84
}
85
-
+ info!("Target address: {}\n", config.target_addr); // TODO remove this
86
+ info!("Target port: {}\n", config.port.unwrap_or(DEFAULT_TCP_PORT));
87
let tcp_stream = TcpStream::connect((
88
config.target_addr,
89
config.port.unwrap_or(DEFAULT_TCP_PORT),
0 commit comments