Home
last modified time | relevance | path

Searched refs:io (Results 1 – 25 of 171) sorted by relevance

1234567

/webrtc/
H A DCargo.lock244 "async-io",
252 name = "async-io"
483 "ciborium-io",
489 name = "ciborium-io"
500 "ciborium-io",
953 "futures-io",
987 name = "futures-io"
1000 "futures-io",
1038 "futures-io",
1327 name = "io-lifetimes"
[all …]
H A DREADME.md9 <a href="https://codecov.io/gh/webrtc-rs/webrtc">
10 <img src="https://codecov.io/gh/webrtc-rs/webrtc/branch/master/graph/badge.svg">
15 <a href="https://crates.io/crates/webrtc">
16 <img src="https://img.shields.io/crates/v/webrtc.svg">
40 <a href="https://www.parity.io/" target="_blank">
76 …aster/doc/check.png">WebRTC<a href="https://crates.io/crates/webrtc"><img src="https://img.shields…
82 …rtc/master/doc/check.png">RTP<a href="https://crates.io/crates/rtp"><img src="https://img.shields.
83 …c/master/doc/check.png">RTCP<a href="https://crates.io/crates/rtcp"><img src="https://img.shields.
90 …c/master/doc/check.png">STUN<a href="https://crates.io/crates/stun"><img src="https://img.shields.
91 …c/master/doc/check.png">TURN<a href="https://crates.io/crates/turn"><img src="https://img.shields.
[all …]
/webrtc/sdp/src/lexer/
H A Dmod.rs4 use std::io;
5 use std::io::SeekFrom;
9 pub struct Lexer<'a, R: io::BufRead + io::Seek> {
16 pub struct StateFn<'a, R: io::BufRead + io::Seek> {
20 pub fn read_type<R: io::BufRead + io::Seek>(reader: &mut R) -> Result<(Vec<u8>, usize)> { in read_type()
45 pub fn read_value<R: io::BufRead + io::Seek>(reader: &mut R) -> Result<(String, usize)> { in read_value()
/webrtc/webrtc/src/mux/
H A Dendpoint.rs6 use std::io;
37 Err(io::Error::new(io::ErrorKind::Other, "Not applicable").into()) in connect()
45 Err(err) => Err(io::Error::new(io::ErrorKind::Other, err.to_string()).into()), in recv()
49 Err(io::Error::new(io::ErrorKind::Other, "Not applicable").into()) in recv_from()
58 Err(io::Error::new(io::ErrorKind::Other, "Not applicable").into()) in send_to()
H A Dmux_test.rs4 use std::io;
53 Err(io::Error::new(io::ErrorKind::Other, "Not applicable").into()) in connect()
63 Err(io::Error::new( in recv()
64 io::ErrorKind::Other, in recv()
72 Err(io::Error::new(io::ErrorKind::Other, "Not applicable").into()) in recv_from()
76 Err(io::Error::new(io::ErrorKind::Other, "Not applicable").into()) in send()
80 Err(io::Error::new(io::ErrorKind::Other, "Not applicable").into()) in send_to()
84 Err(io::Error::new(io::ErrorKind::Other, "Not applicable").into()) in local_addr()
/webrtc/data/src/
H A Derror.rs1 use std::io;
41 impl From<Error> for io::Error {
45 io::Error::new(io::ErrorKind::UnexpectedEof, e.to_string()) in from()
48 io::Error::new(io::ErrorKind::ConnectionAborted, e.to_string()) in from()
50 e => io::Error::new(io::ErrorKind::Other, e.to_string()), in from()
/webrtc/ice/src/agent/
H A Dagent_transport.rs6 use std::io;
167 Err(io::Error::new(io::ErrorKind::Other, "Not applicable").into()) in connect()
172 return Err(io::Error::new(io::ErrorKind::Other, "Conn is closed").into()); in recv()
177 Err(err) => return Err(io::Error::new(io::ErrorKind::Other, err.to_string()).into()), in recv()
192 Err(io::Error::new(io::ErrorKind::Other, "Not applicable").into()) in recv_from()
198 return Err(io::Error::new(io::ErrorKind::Other, "Conn is closed").into()); in send()
218 Err(err) => Err(io::Error::new(io::ErrorKind::Other, err.to_string()).into()), in send()
227 Err(io::Error::new(io::ErrorKind::Other, "Not applicable").into()) in send_to()
234 Err(io::Error::new(io::ErrorKind::AddrNotAvailable, "Addr Not Available").into()) in local_addr()
/webrtc/sdp/src/description/
H A Dsession.rs4 use std::{fmt, io};
924 fn unmarshal_origin<'a, R: io::BufRead + io::Seek>( in unmarshal_origin()
965 fn unmarshal_session_name<'a, R: io::BufRead + io::Seek>( in unmarshal_session_name()
981 fn unmarshal_uri<'a, R: io::BufRead + io::Seek>( in unmarshal_uri()
989 fn unmarshal_email<'a, R: io::BufRead + io::Seek>( in unmarshal_email()
997 fn unmarshal_phone<'a, R: io::BufRead + io::Seek>( in unmarshal_phone()
1085 fn unmarshal_timing<'a, R: io::BufRead + io::Seek>( in unmarshal_timing()
1109 fn unmarshal_repeat_times<'a, R: io::BufRead + io::Seek>( in unmarshal_repeat_times()
1139 fn unmarshal_time_zones<'a, R: io::BufRead + io::Seek>( in unmarshal_time_zones()
1268 fn unmarshal_media_title<'a, R: io::BufRead + io::Seek>( in unmarshal_media_title()
[all …]
/webrtc/sctp/src/
H A Derror.rs1 use std::io;
227 impl From<Error> for io::Error {
230 e @ Error::ErrEof => io::Error::new(io::ErrorKind::UnexpectedEof, e.to_string()), in from()
232 io::Error::new(io::ErrorKind::ConnectionAborted, e.to_string()) in from()
234 e => io::Error::new(io::ErrorKind::Other, e.to_string()), in from()
/webrtc/examples/
H A DREADME.md9 <a href="https://codecov.io/gh/webrtc-rs/examples">
10 <img src="https://codecov.io/gh/webrtc-rs/examples/branch/main/graph/badge.svg">
15 <a href="https://crates.io/crates/examples">
16 <img src="https://img.shields.io/crates/v/examples.svg">
22 …<img src="https://img.shields.io/badge/license-MIT%2FApache--2.0-blue" alt="License: MIT/Apache 2.…
25 <img src="https://img.shields.io/discord/800204819540869120?logo=discord" alt="Discord">
/webrtc/media/src/
H A Derror.rs1 use std::io;
57 pub struct IoError(#[from] pub io::Error);
66 impl From<io::Error> for Error {
67 fn from(e: io::Error) -> Self { in from()
/webrtc/sdp/
H A DREADME.md9 <a href="https://codecov.io/gh/webrtc-rs/sdp">
10 <img src="https://codecov.io/gh/webrtc-rs/sdp/branch/main/graph/badge.svg">
15 <a href="https://crates.io/crates/sdp">
16 <img src="https://img.shields.io/crates/v/sdp.svg">
22 …<img src="https://img.shields.io/badge/license-MIT%2FApache--2.0-blue" alt="License: MIT/Apache 2.…
25 <img src="https://img.shields.io/discord/800204819540869120?logo=discord" alt="Discord">
/webrtc/mdns/
H A DREADME.md9 <a href="https://codecov.io/gh/webrtc-rs/mdns">
10 <img src="https://codecov.io/gh/webrtc-rs/mdns/branch/main/graph/badge.svg">
15 <a href="https://crates.io/crates/webrtc-mdns">
16 <img src="https://img.shields.io/crates/v/webrtc-mdns.svg">
22 …<img src="https://img.shields.io/badge/license-MIT%2FApache--2.0-blue" alt="License: MIT/Apache 2.…
25 <img src="https://img.shields.io/discord/800204819540869120?logo=discord" alt="Discord">
/webrtc/dtls/
H A DREADME.md9 <a href="https://codecov.io/gh/webrtc-rs/dtls">
10 <img src="https://codecov.io/gh/webrtc-rs/dtls/branch/main/graph/badge.svg">
15 <a href="https://crates.io/crates/webrtc-dtls">
16 <img src="https://img.shields.io/crates/v/webrtc-dtls.svg">
22 …<img src="https://img.shields.io/badge/license-MIT%2FApache--2.0-blue" alt="License: MIT/Apache 2.…
25 <img src="https://img.shields.io/discord/800204819540869120?logo=discord" alt="Discord">
/webrtc/interceptor/
H A DREADME.md9 <a href="https://codecov.io/gh/webrtc-rs/interceptor">
10 <img src="https://codecov.io/gh/webrtc-rs/interceptor/branch/main/graph/badge.svg">
15 <a href="https://crates.io/crates/interceptor">
16 <img src="https://img.shields.io/crates/v/interceptor.svg">
22 …<img src="https://img.shields.io/badge/license-MIT%2FApache--2.0-blue" alt="License: MIT/Apache 2.…
25 <img src="https://img.shields.io/discord/800204819540869120?logo=discord" alt="Discord">
/webrtc/util/
H A DREADME.md9 <a href="https://codecov.io/gh/webrtc-rs/util">
10 <img src="https://codecov.io/gh/webrtc-rs/util/branch/main/graph/badge.svg">
15 <a href="https://crates.io/crates/webrtc-util">
16 <img src="https://img.shields.io/crates/v/webrtc-util.svg">
22 …<img src="https://img.shields.io/badge/license-MIT%2FApache--2.0-blue" alt="License: MIT/Apache 2.…
25 <img src="https://img.shields.io/discord/800204819540869120?logo=discord" alt="Discord">
/webrtc/turn/
H A DREADME.md9 <a href="https://codecov.io/gh/webrtc-rs/turn">
10 <img src="https://codecov.io/gh/webrtc-rs/turn/branch/main/graph/badge.svg">
15 <a href="https://crates.io/crates/turn">
16 <img src="https://img.shields.io/crates/v/turn.svg">
22 …<img src="https://img.shields.io/badge/license-MIT%2FApache--2.0-blue" alt="License: MIT/Apache 2.…
25 <img src="https://img.shields.io/discord/800204819540869120?logo=discord" alt="Discord">
/webrtc/stun/
H A DREADME.md9 <a href="https://codecov.io/gh/webrtc-rs/stun">
10 <img src="https://codecov.io/gh/webrtc-rs/stun/branch/main/graph/badge.svg">
15 <a href="https://crates.io/crates/stun">
16 <img src="https://img.shields.io/crates/v/stun.svg">
22 …<img src="https://img.shields.io/badge/license-MIT%2FApache--2.0-blue" alt="License: MIT/Apache 2.…
25 <img src="https://img.shields.io/discord/800204819540869120?logo=discord" alt="Discord">
/webrtc/sctp/
H A DREADME.md9 <a href="https://codecov.io/gh/webrtc-rs/sctp">
10 <img src="https://codecov.io/gh/webrtc-rs/sctp/branch/main/graph/badge.svg">
15 <a href="https://crates.io/crates/webrtc-sctp">
16 <img src="https://img.shields.io/crates/v/webrtc-sctp.svg">
22 …<img src="https://img.shields.io/badge/license-MIT%2FApache--2.0-blue" alt="License: MIT/Apache 2.…
25 <img src="https://img.shields.io/discord/800204819540869120?logo=discord" alt="Discord">
/webrtc/media/
H A DREADME.md9 <a href="https://codecov.io/gh/webrtc-rs/media">
10 <img src="https://codecov.io/gh/webrtc-rs/media/branch/main/graph/badge.svg">
15 <a href="https://crates.io/crates/webrtc-media">
16 <img src="https://img.shields.io/crates/v/webrtc-media.svg">
22 …<img src="https://img.shields.io/badge/license-MIT%2FApache--2.0-blue" alt="License: MIT/Apache 2.…
25 <img src="https://img.shields.io/discord/800204819540869120?logo=discord" alt="Discord">
/webrtc/data/
H A DREADME.md9 <a href="https://codecov.io/gh/webrtc-rs/data">
10 <img src="https://codecov.io/gh/webrtc-rs/data/branch/main/graph/badge.svg">
15 <a href="https://crates.io/crates/webrtc-data">
16 <img src="https://img.shields.io/crates/v/webrtc-data.svg">
22 …<img src="https://img.shields.io/badge/license-MIT%2FApache--2.0-blue" alt="License: MIT/Apache 2.…
25 <img src="https://img.shields.io/discord/800204819540869120?logo=discord" alt="Discord">
/webrtc/ice/
H A DREADME.md9 <a href="https://codecov.io/gh/webrtc-rs/ice">
10 <img src="https://codecov.io/gh/webrtc-rs/ice/branch/main/graph/badge.svg">
15 <a href="https://crates.io/crates/webrtc-ice">
16 <img src="https://img.shields.io/crates/v/webrtc-ice.svg">
22 …<img src="https://img.shields.io/badge/license-MIT%2FApache--2.0-blue" alt="License: MIT/Apache 2.…
25 <img src="https://img.shields.io/discord/800204819540869120?logo=discord" alt="Discord">
/webrtc/srtp/
H A DREADME.md9 <a href="https://codecov.io/gh/webrtc-rs/srtp">
10 <img src="https://codecov.io/gh/webrtc-rs/srtp/branch/main/graph/badge.svg">
15 <a href="https://crates.io/crates/webrtc-srtp">
16 <img src="https://img.shields.io/crates/v/webrtc-srtp.svg">
22 …<img src="https://img.shields.io/badge/license-MIT%2FApache--2.0-blue" alt="License: MIT/Apache 2.…
25 <img src="https://img.shields.io/discord/800204819540869120?logo=discord" alt="Discord">
/webrtc/rtcp/
H A DREADME.md9 <a href="https://codecov.io/gh/webrtc-rs/rtcp">
10 <img src="https://codecov.io/gh/webrtc-rs/rtcp/branch/main/graph/badge.svg">
15 <a href="https://crates.io/crates/rtcp">
16 <img src="https://img.shields.io/crates/v/rtcp.svg">
22 …<img src="https://img.shields.io/badge/license-MIT%2FApache--2.0-blue" alt="License: MIT/Apache 2.…
25 <img src="https://img.shields.io/discord/800204819540869120?logo=discord" alt="Discord">
/webrtc/rtp/
H A DREADME.md9 <a href="https://codecov.io/gh/webrtc-rs/rtp">
10 <img src="https://codecov.io/gh/webrtc-rs/rtp/branch/main/graph/badge.svg">
15 <a href="https://crates.io/crates/rtp">
16 <img src="https://img.shields.io/crates/v/rtp.svg">
22 …<img src="https://img.shields.io/badge/license-MIT%2FApache--2.0-blue" alt="License: MIT/Apache 2.…
25 <img src="https://img.shields.io/discord/800204819540869120?logo=discord" alt="Discord">

1234567