Home
last modified time | relevance | path

Searched refs:Method (Results 1 – 9 of 9) sorted by relevance

/webrtc/stun/src/
H A Dmessage.rs473 pub struct Method(u16); struct
476 pub const METHOD_BINDING: Method = Method(0x001);
477 pub const METHOD_ALLOCATE: Method = Method(0x003);
478 pub const METHOD_REFRESH: Method = Method(0x004);
479 pub const METHOD_SEND: Method = Method(0x006);
480 pub const METHOD_DATA: Method = Method(0x007);
481 pub const METHOD_CREATE_PERMISSION: Method = Method(0x008);
482 pub const METHOD_CHANNEL_BIND: Method = Method(0x009);
485 pub const METHOD_CONNECT: Method = Method(0x000a);
486 pub const METHOD_CONNECTION_BIND: Method = Method(0x000b);
[all …]
/webrtc/examples/examples/play-from-disk-renegotiation/
H A Dplay-from-disk-renegotiation.rs4 use hyper::{Body, Method, Request, Response, Server, StatusCode};
71 (&Method::GET, "/") | (&Method::GET, "/index.html") => simple_file_send(INDEX).await, in remote_handler()
73 (&Method::POST, "/createPeerConnection") => create_peer_connection(&pc, req).await, in remote_handler()
75 (&Method::POST, "/addVideo") => add_video(&pc, req).await, in remote_handler()
77 (&Method::POST, "/removeVideo") => remove_video(&pc, req).await, in remote_handler()
/webrtc/examples/examples/ice-restart/
H A Dice-restart.rs4 use hyper::{Body, Method, Request, Response, Server, StatusCode};
56 (&Method::GET, "/") | (&Method::GET, "/index.html") => simple_file_send(INDEX).await, in remote_handler()
58 (&Method::POST, "/doSignaling") => do_signaling(req).await, in remote_handler()
/webrtc/examples/examples/signal/src/
H A Dlib.rs6 use hyper::{Body, Method, Request, Response, Server, StatusCode};
24 (&Method::POST, "/sdp") => { in remote_handler()
/webrtc/ice/examples/
H A Dping_pong.rs13 use hyper::{Body, Client, Method, Request, Response, Server, StatusCode};
44 (&Method::POST, "/remoteAuth") => { in remote_handler()
59 (&Method::POST, "/remoteCandidate") => { in remote_handler()
212 .method(Method::POST) in main()
252 .method(Method::POST) in main()
/webrtc/examples/examples/offer-answer/
H A Doffer.rs4 use hyper::{Body, Client, Method, Request, Response, Server, StatusCode};
41 .method(Method::POST) in signal_candidate()
80 (&Method::POST, "/candidate") => { in remote_handler()
104 (&Method::POST, "/sdp") => { in remote_handler()
346 .method(Method::POST) in main()
H A Danswer.rs4 use hyper::{Body, Client, Method, Request, Response, Server, StatusCode};
42 .method(Method::POST) in signal_candidate()
81 (&Method::POST, "/candidate") => { in remote_handler()
105 (&Method::POST, "/sdp") => { in remote_handler()
139 .method(Method::POST) in remote_handler()
/webrtc/stun/src/message/
H A Dmessage_test.rs55 method: Method(0xb6d), in test_message_type_value()
121 method: Method(0x12), in test_message_type_read_write_value()
334 Method(0x616).to_string(), in test_method_string()
337 Method(0x616) in test_method_string()
/webrtc/turn/src/server/
H A Drequest.rs144 calling_method: Method, in authenticate_request() argument
233 calling_method: Method, in respond_with_nonce() argument