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.rs32 pub struct Driver { struct
33 info: ServerInfo,
34 config: Config,
35 connection: Connection,
36 command_rx: mpsc::Receiver<Command>,
37 status_tx: watch::Sender<Status>,
38 validation: ValidationReporter,
39 tag_socket: SocketTagger,
93 impl Driver { impl
/packages/modules/DnsResolver/doh/connection/
Ddriver.rs79 struct Driver { struct
98 driver: Driver, argument
128 impl Driver { impl
256 fn new(driver: Driver, h3_conn: h3::Connection) -> Self { in new()
266 async fn drive(mut self) -> Result<Driver> { in drive()