Home
last modified time | relevance | path

Searched refs:Username (Results 1 – 12 of 12) sorted by relevance

/webrtc/turn/src/client/relay_conn/
H A Drelay_conn_test.rs8 username: Username,
18 fn username(&self) -> Username { in username() argument
44 username: Username::new(ATTR_USERNAME, "username".to_owned()), in test_relay_conn()
/webrtc/turn/src/allocation/
H A Dallocation_manager.rs10 use stun::textattrs::Username;
88 username: Username, in create_allocation() argument
H A Dmod.rs14 use stun::{agent::*, message::*, textattrs::Username};
77 username: Username,
100 username: Username, in new() argument
/webrtc/stun/src/
H A Dtextattrs.rs19 pub type Username = TextAttribute; typedef
/webrtc/stun/benches/
H A Dbench.rs21 use stun::textattrs::{Nonce, Realm, Software, Username};
199 let username = Username::new(ATTR_USERNAME, "username".to_owned()); in benchmark_message_build_overhead()
511 let u = Username::new(ATTR_USERNAME, "test".to_owned()); in benchmark_text_attributes()
522 let mut u = Username::new(ATTR_USERNAME, "test".to_owned()); in benchmark_text_attributes()
/webrtc/turn/src/server/request/
H A Drequest_test.rs108 Username::new(ATTR_USERNAME, STATIC_KEY.to_owned()).add_to(&mut m)?; in test_allocation_lifetime_deletion_zero_lifetime()
/webrtc/ice/src/agent/
H A Dagent_selector.rs122 Box::new(Username::new(ATTR_USERNAME, username)), in nominate_pair()
283 Box::new(Username::new(ATTR_USERNAME, username)), in ping_candidate()
435 Box::new(Username::new(ATTR_USERNAME, username)), in ping_candidate()
H A Dagent_test.rs18 use stun::textattrs::Username;
274 Box::new(Username::new(ATTR_USERNAME, username)), in test_handle_peer_reflexive_udp_pflx_candidate()
622 Box::new(Username::new(ATTR_USERNAME, username)), in build_msg()
814 Box::new(Username::new(ATTR_USERNAME, username)), in test_inbound_validity()
/webrtc/turn/src/client/
H A Dmod.rs65 username: Username,
84 fn username(&self) -> Username { in username() argument
193 username: Username::new(ATTR_USERNAME, config.username), in new()
H A Drelay_conn.rs42 fn username(&self) -> Username; in username() argument
/webrtc/ice/src/util/
H A Dmod.rs25 let mut username = Username::new(ATTR_USERNAME, String::new()); in assert_inbound_username()
/webrtc/turn/src/server/
H A Drequest.rs145 ) -> Result<Option<(Username, MessageIntegrity)>> { in authenticate_request() argument
153 let mut username_attr = Username::new(ATTR_USERNAME, String::new()); in authenticate_request()