-
-
Notifications
You must be signed in to change notification settings - Fork 376
/
stun_client.rs
65 lines (51 loc) · 1.78 KB
/
stun_client.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
use std::sync::Arc;
use clap::{App, Arg};
use stun::agent::*;
use stun::client::*;
use stun::message::*;
use stun::xoraddr::*;
use stun::Error;
use tokio::net::UdpSocket;
#[tokio::main]
async fn main() -> Result<(), Error> {
let mut app = App::new("STUN Client")
.version("0.1.0")
.author("Rain Liu <yliu@webrtc.rs>")
.about("An example of STUN Client")
.arg(
Arg::with_name("FULLHELP")
.help("Prints more detailed help information")
.long("fullhelp"),
)
.arg(
Arg::with_name("server")
.required_unless("FULLHELP")
.takes_value(true)
.default_value("stun.l.google.com:19302")
.long("server")
.help("STUN Server"),
);
let matches = app.clone().get_matches();
if matches.is_present("FULLHELP") {
app.print_long_help().unwrap();
std::process::exit(0);
}
let server = matches.value_of("server").unwrap();
let (handler_tx, mut handler_rx) = tokio::sync::mpsc::unbounded_channel();
let conn = UdpSocket::bind("0.0.0.0:0").await?;
println!("Local address: {}", conn.local_addr()?);
println!("Connecting to: {server}");
conn.connect(server).await?;
let mut client = ClientBuilder::new().with_conn(Arc::new(conn)).build()?;
let mut msg = Message::new();
msg.build(&[Box::<TransactionId>::default(), Box::new(BINDING_REQUEST)])?;
client.send(&msg, Some(Arc::new(handler_tx))).await?;
if let Some(event) = handler_rx.recv().await {
let msg = event.event_body?;
let mut xor_addr = XorMappedAddress::default();
xor_addr.get_from(&msg)?;
println!("Got response: {xor_addr}");
}
client.close().await?;
Ok(())
}