Home
last modified time | relevance | path

Searched defs:Driver (Results 1 – 3 of 3) sorted by relevance

/packages/modules/DnsResolver/doh/dispatcher/
Ddriver.rs29 pub struct Driver { struct
43 impl Driver { argument
/packages/modules/DnsResolver/doh/network/
Ddriver.rs33 pub struct Driver { struct
34 info: ServerInfo,
35 config: Config,
36 connection: Connection,
37 command_rx: mpsc::Receiver<Command>,
38 status_tx: watch::Sender<Status>,
39 validation: ValidationReporter,
40 tag_socket: SocketTagger,
86 impl Driver { impl
/packages/modules/DnsResolver/doh/connection/
Ddriver.rs125 struct Driver { struct
146 driver: Driver, argument
177 impl Driver { implementation
330 fn new(driver: Driver, h3_conn: h3::Connection) -> Self { in new()
340 async fn drive(mut self) -> Result<Driver> { in drive()