Home
last modified time | relevance | path

Searched refs:question (Results 1 – 6 of 6) sorted by relevance

/webrtc/mdns/src/message/
H A Dmod.rs9 pub mod question; module
16 use question::*;
333 for question in &self.questions { in append_pack()
334 msg = question.pack(msg, &mut compression, compression_off)?; in append_pack()
H A Dparser.rs4 use crate::message::question::Question;
106 pub fn question(&mut self) -> Result<Question> { in question() method
129 match self.question() { in all_questions()
H A Dbuilder.rs2 use super::question::*;
H A Dmessage_test.rs8 use super::question::*;
266 let got = p.question()?; in test_question_pack_unpack()
612 Box::new(|p: &mut Parser<'_>| -> Result<()> { p.question().map(|_| ()) }), in test_skip_after_read()
/webrtc/interceptor/
H A DCHANGELOG.md12 …p` instead of the default `MissedTickBehavior::Burst` for the ticker in question. [#323](https://g…
/webrtc/mdns/src/conn/
H A Dmod.rs4 use crate::message::{header::*, parser::*, question::*, resource::a::*, resource::*, *};
302 let q = match p.question() { in run()