Home
last modified time | relevance | path

Searched refs:method (Results 1 – 14 of 14) sorted by relevance

/webrtc/stun/src/
H A Dmessage.rs516 pub method: Method, // e.g. binding field
523 method: METHOD_BINDING,
528 method: METHOD_BINDING,
533 method: METHOD_BINDING,
539 write!(f, "{} {}", self.method, self.class) in fmt()
569 pub fn new(method: Method, class: MessageClass) -> Self { in new()
570 MessageType { method, class } in new()
585 let method = self.method.0; in value() localVariable
591 let method = a + (b << METHOD_BSHIFT) + (d << METHOD_DSHIFT); in value() localVariable
604 method + class in value()
[all …]
/webrtc/stun/src/message/
H A Dmessage_test.rs13 method: METHOD_BINDING, in test_message_buffer()
34 method: METHOD_BINDING, in test_message_type_value()
109 method: METHOD_BINDING, in test_message_type_read_write_value()
113 method: METHOD_BINDING, in test_message_type_read_write_value()
117 method: METHOD_BINDING, in test_message_type_read_write_value()
121 method: Method(0x12), in test_message_type_read_write_value()
140 method: METHOD_BINDING, in test_message_write_to()
185 method: METHOD_BINDING, in test_message_bad_length()
208 method: METHOD_BINDING, in test_message_attr_length_less_than_header()
238 method: METHOD_BINDING, in test_message_attr_size_less_than_length()
[all …]
/webrtc/turn/
H A DCHANGELOG.md10 * Added `delete_allocations_by_username` method on `Server`. This method provides possibility to ma…
11 * Added `get_allocations_info` method on `Server`. This method provides possibility to get informat…
/webrtc/stun/benches/
H A Dbench.rs272 method: METHOD_BINDING, in benchmark_message()
283 method: METHOD_BINDING, in benchmark_message()
295 method: METHOD_BINDING, in benchmark_message()
319 method: METHOD_BINDING, in benchmark_message()
341 method: METHOD_BINDING, in benchmark_message()
362 method: METHOD_BINDING, in benchmark_message()
429 method: METHOD_BINDING, in benchmark_message()
487 method: METHOD_BINDING, in benchmark_message()
/webrtc/ice/examples/
H A Dping_pong.rs43 match (req.method(), req.uri().path()) { in remote_handler()
212 .method(Method::POST) in main()
252 .method(Method::POST) in main()
/webrtc/examples/examples/offer-answer/
H A Doffer.rs41 .method(Method::POST) in signal_candidate()
76 match (req.method(), req.uri().path()) { in remote_handler()
346 .method(Method::POST) in main()
H A Danswer.rs42 .method(Method::POST) in signal_candidate()
77 match (req.method(), req.uri().path()) { in remote_handler()
139 .method(Method::POST) in remote_handler()
/webrtc/examples/examples/signal/src/
H A Dlib.rs22 match (req.method(), req.uri().path()) { in remote_handler()
/webrtc/webrtc/
H A DCHANGELOG.md66 …ing RTP stream from being used. Long term we should support RTX via this method, this is tracked i…
74 * Added a new `write_rtp_with_extensions` method to `TrackLocalStaticSample` and `TrackLocalStaticR…
135 …The desired direction can be controlled with the newly introduced public method `set_direction` on…
155 * We now provide stats reporting via the standardized `RTCPeerConnection::get_stats` method.
/webrtc/examples/examples/ice-restart/
H A Dice-restart.rs55 match (req.method(), req.uri().path()) { in remote_handler()
/webrtc/turn/src/server/
H A Drequest.rs123 match m.typ.method { in process_message_handler()
128 match m.typ.method { in process_message_handler()
/webrtc/examples/examples/play-from-disk-renegotiation/
H A Dplay-from-disk-renegotiation.rs70 match (req.method(), req.uri().path()) { in remote_handler()
/webrtc/ice/src/agent/
H A Dagent_internal.rs829 if m.typ.method != METHOD_BINDING in handle_inbound()
840 m.typ.method in handle_inbound()
/webrtc/turn/src/client/
H A Dmod.rs323 if msg.typ.method == METHOD_DATA { in handle_stun_message()