fidl_fuchsia_net_test_realm/
fidl_fuchsia_net_test_realm.rs

1// WARNING: This file is machine generated by fidlgen.
2
3#![warn(clippy::all)]
4#![allow(unused_parens, unused_mut, unused_imports, nonstandard_style)]
5
6use bitflags::bitflags;
7use fidl::client::QueryResponseFut;
8use fidl::encoding::{MessageBufFor, ProxyChannelBox, ResourceDialect};
9use fidl::endpoints::{ControlHandle as _, Responder as _};
10pub use fidl_fuchsia_net_test_realm_common::*;
11use futures::future::{self, MaybeDone, TryFutureExt};
12use zx_status;
13
14#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
15pub struct ControllerMarker;
16
17impl fidl::endpoints::ProtocolMarker for ControllerMarker {
18    type Proxy = ControllerProxy;
19    type RequestStream = ControllerRequestStream;
20    #[cfg(target_os = "fuchsia")]
21    type SynchronousProxy = ControllerSynchronousProxy;
22
23    const DEBUG_NAME: &'static str = "fuchsia.net.test.realm.Controller";
24}
25impl fidl::endpoints::DiscoverableProtocolMarker for ControllerMarker {}
26pub type ControllerStartHermeticNetworkRealmResult = Result<(), Error>;
27pub type ControllerStopHermeticNetworkRealmResult = Result<(), Error>;
28pub type ControllerAddInterfaceResult = Result<(), Error>;
29pub type ControllerStartStubResult = Result<(), Error>;
30pub type ControllerStopStubResult = Result<(), Error>;
31pub type ControllerPingResult = Result<(), Error>;
32pub type ControllerPollUdpResult = Result<Vec<u8>, Error>;
33pub type ControllerJoinMulticastGroupResult = Result<(), Error>;
34pub type ControllerLeaveMulticastGroupResult = Result<(), Error>;
35pub type ControllerStartDhcpv6ClientResult = Result<(), Error>;
36pub type ControllerStopDhcpv6ClientResult = Result<(), Error>;
37pub type ControllerStartOutOfStackDhcpv4ClientResult = Result<(), Error>;
38pub type ControllerStopOutOfStackDhcpv4ClientResult = Result<(), Error>;
39
40pub trait ControllerProxyInterface: Send + Sync {
41    type StartHermeticNetworkRealmResponseFut: std::future::Future<Output = Result<ControllerStartHermeticNetworkRealmResult, fidl::Error>>
42        + Send;
43    fn r#start_hermetic_network_realm(
44        &self,
45        netstack: Netstack,
46    ) -> Self::StartHermeticNetworkRealmResponseFut;
47    type StopHermeticNetworkRealmResponseFut: std::future::Future<Output = Result<ControllerStopHermeticNetworkRealmResult, fidl::Error>>
48        + Send;
49    fn r#stop_hermetic_network_realm(&self) -> Self::StopHermeticNetworkRealmResponseFut;
50    type AddInterfaceResponseFut: std::future::Future<Output = Result<ControllerAddInterfaceResult, fidl::Error>>
51        + Send;
52    fn r#add_interface(
53        &self,
54        mac_address: &fidl_fuchsia_net::MacAddress,
55        name: &str,
56        wait_any_ip_address: bool,
57    ) -> Self::AddInterfaceResponseFut;
58    type StartStubResponseFut: std::future::Future<Output = Result<ControllerStartStubResult, fidl::Error>>
59        + Send;
60    fn r#start_stub(&self, component_url: &str) -> Self::StartStubResponseFut;
61    type StopStubResponseFut: std::future::Future<Output = Result<ControllerStopStubResult, fidl::Error>>
62        + Send;
63    fn r#stop_stub(&self) -> Self::StopStubResponseFut;
64    type PingResponseFut: std::future::Future<Output = Result<ControllerPingResult, fidl::Error>>
65        + Send;
66    fn r#ping(
67        &self,
68        target: &fidl_fuchsia_net::IpAddress,
69        payload_length: u16,
70        interface_name: Option<&str>,
71        timeout: i64,
72    ) -> Self::PingResponseFut;
73    type PollUdpResponseFut: std::future::Future<Output = Result<ControllerPollUdpResult, fidl::Error>>
74        + Send;
75    fn r#poll_udp(
76        &self,
77        target: &fidl_fuchsia_net::SocketAddress,
78        payload: &[u8],
79        timeout: i64,
80        num_retries: u16,
81    ) -> Self::PollUdpResponseFut;
82    type JoinMulticastGroupResponseFut: std::future::Future<Output = Result<ControllerJoinMulticastGroupResult, fidl::Error>>
83        + Send;
84    fn r#join_multicast_group(
85        &self,
86        address: &fidl_fuchsia_net::IpAddress,
87        interface_id: u64,
88    ) -> Self::JoinMulticastGroupResponseFut;
89    type LeaveMulticastGroupResponseFut: std::future::Future<Output = Result<ControllerLeaveMulticastGroupResult, fidl::Error>>
90        + Send;
91    fn r#leave_multicast_group(
92        &self,
93        address: &fidl_fuchsia_net::IpAddress,
94        interface_id: u64,
95    ) -> Self::LeaveMulticastGroupResponseFut;
96    type StartDhcpv6ClientResponseFut: std::future::Future<Output = Result<ControllerStartDhcpv6ClientResult, fidl::Error>>
97        + Send;
98    fn r#start_dhcpv6_client(
99        &self,
100        params: &fidl_fuchsia_net_dhcpv6::NewClientParams,
101    ) -> Self::StartDhcpv6ClientResponseFut;
102    type StopDhcpv6ClientResponseFut: std::future::Future<Output = Result<ControllerStopDhcpv6ClientResult, fidl::Error>>
103        + Send;
104    fn r#stop_dhcpv6_client(&self) -> Self::StopDhcpv6ClientResponseFut;
105    type StartOutOfStackDhcpv4ClientResponseFut: std::future::Future<
106            Output = Result<ControllerStartOutOfStackDhcpv4ClientResult, fidl::Error>,
107        > + Send;
108    fn r#start_out_of_stack_dhcpv4_client(
109        &self,
110        payload: &ControllerStartOutOfStackDhcpv4ClientRequest,
111    ) -> Self::StartOutOfStackDhcpv4ClientResponseFut;
112    type StopOutOfStackDhcpv4ClientResponseFut: std::future::Future<
113            Output = Result<ControllerStopOutOfStackDhcpv4ClientResult, fidl::Error>,
114        > + Send;
115    fn r#stop_out_of_stack_dhcpv4_client(
116        &self,
117        payload: &ControllerStopOutOfStackDhcpv4ClientRequest,
118    ) -> Self::StopOutOfStackDhcpv4ClientResponseFut;
119}
120#[derive(Debug)]
121#[cfg(target_os = "fuchsia")]
122pub struct ControllerSynchronousProxy {
123    client: fidl::client::sync::Client,
124}
125
126#[cfg(target_os = "fuchsia")]
127impl fidl::endpoints::SynchronousProxy for ControllerSynchronousProxy {
128    type Proxy = ControllerProxy;
129    type Protocol = ControllerMarker;
130
131    fn from_channel(inner: fidl::Channel) -> Self {
132        Self::new(inner)
133    }
134
135    fn into_channel(self) -> fidl::Channel {
136        self.client.into_channel()
137    }
138
139    fn as_channel(&self) -> &fidl::Channel {
140        self.client.as_channel()
141    }
142}
143
144#[cfg(target_os = "fuchsia")]
145impl ControllerSynchronousProxy {
146    pub fn new(channel: fidl::Channel) -> Self {
147        let protocol_name = <ControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
148        Self { client: fidl::client::sync::Client::new(channel, protocol_name) }
149    }
150
151    pub fn into_channel(self) -> fidl::Channel {
152        self.client.into_channel()
153    }
154
155    /// Waits until an event arrives and returns it. It is safe for other
156    /// threads to make concurrent requests while waiting for an event.
157    pub fn wait_for_event(
158        &self,
159        deadline: zx::MonotonicInstant,
160    ) -> Result<ControllerEvent, fidl::Error> {
161        ControllerEvent::decode(self.client.wait_for_event(deadline)?)
162    }
163
164    /// Starts a hermetic network realm corresponding to `netstack`.
165    ///
166    /// Any previously running hermetic network realm will be terminated before
167    /// the new realm is started. The configured realm will contain a subset of
168    /// the components in the standard network realm. In particular, it will
169    /// contain:
170    ///
171    ///  * A Netstack instance that corresponds to the provided `netstack`
172    ///  * A DHCP server
173    ///  * A DHCPv6 client
174    ///  * A DNS resolver
175    ///
176    /// + request `netstack` the type of Netstack that will be run.
177    /// * error `INTERNAL` for internal errors, including failure to start the
178    ///     specified `netstack`.
179    pub fn r#start_hermetic_network_realm(
180        &self,
181        mut netstack: Netstack,
182        ___deadline: zx::MonotonicInstant,
183    ) -> Result<ControllerStartHermeticNetworkRealmResult, fidl::Error> {
184        let _response = self.client.send_query::<
185            ControllerStartHermeticNetworkRealmRequest,
186            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
187        >(
188            (netstack,),
189            0x58c1fa7335d4c5c2,
190            fidl::encoding::DynamicFlags::empty(),
191            ___deadline,
192        )?;
193        Ok(_response.map(|x| x))
194    }
195
196    /// Stops any running hermetic network realm.
197    ///
198    /// All components in the hermetic network realm will be stopped. Similarly,
199    /// any interfaces that were previously disabled on the system's Netstack
200    /// will be re-enabled on a best-effort basis. That is, a failure to
201    /// re-enable an interface will not result in this method returning an
202    /// error.
203    ///
204    /// * error `HERMETIC_NETWORK_REALM_NOT_RUNNING` if a hermetic network realm
205    ///     is not running.
206    /// * error `INTERNAL` for internal errors, including failure to destroy the
207    ///     realm.
208    pub fn r#stop_hermetic_network_realm(
209        &self,
210        ___deadline: zx::MonotonicInstant,
211    ) -> Result<ControllerStopHermeticNetworkRealmResult, fidl::Error> {
212        let _response = self.client.send_query::<
213            fidl::encoding::EmptyPayload,
214            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
215        >(
216            (),
217            0x49d3c2501cd2f635,
218            fidl::encoding::DynamicFlags::empty(),
219            ___deadline,
220        )?;
221        Ok(_response.map(|x| x))
222    }
223
224    /// Attaches an interface to the hermetic Netstack.
225    ///
226    /// The interface that corresponds to `mac_address` will disabled on the
227    /// system's Netstack, but enabled on the hermetic Netstack.
228    ///
229    /// + request `mac_address` address of the interface to be added to the
230    ///     hermetic Netstack.
231    /// + request `name` the name to assign to the new interface.
232    /// + request `wait_any_ip_address` whether to wait for any IP address to be
233    ///     assigned to the interface before returning. This is helpful for
234    ///     tests that want to ensure the autoconfigured IP address is assigned
235    ///     and has completed duplicate address detection before proceeding.
236    /// * error `ALREADY_EXISTS` if an interface with `name` already exists on
237    ///     the hermetic Netstack.
238    /// * error `HERMETIC_NETWORK_REALM_NOT_RUNNING` if there is no running
239    ///     hermetic network realm.
240    /// * error `INTERFACE_NOT_FOUND` if an interface with `mac_address` could
241    ///     not be found on the system.
242    /// * error `INTERNAL` for internal errors, including failure to read the
243    ///     system's interfaces or configure an interface.
244    pub fn r#add_interface(
245        &self,
246        mut mac_address: &fidl_fuchsia_net::MacAddress,
247        mut name: &str,
248        mut wait_any_ip_address: bool,
249        ___deadline: zx::MonotonicInstant,
250    ) -> Result<ControllerAddInterfaceResult, fidl::Error> {
251        let _response = self.client.send_query::<
252            ControllerAddInterfaceRequest,
253            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
254        >(
255            (mac_address, name, wait_any_ip_address,),
256            0x668ded2d2b619c15,
257            fidl::encoding::DynamicFlags::empty(),
258            ___deadline,
259        )?;
260        Ok(_response.map(|x| x))
261    }
262
263    /// Starts a test stub.
264    ///
265    /// Any previously running stub will be terminated before the provided
266    /// stub corresponding to `component_url` is started.
267    ///
268    /// + request `component_url` the URL of the component to run.
269    /// * error `COMPONENT_NOT_FOUND` if a component correspodning to
270    ///     `component_url` could not be resolved.
271    /// * error `HERMETIC_NETWORK_REALM_NOT_RUNNING` if there is no running
272    ///     hermetic network realm.
273    /// * error `INTERNAL` for internal errors, including failure to add the
274    ///     desired stub within the hermetic network realm.
275    /// * error `INVALID_ARGUMENTS` if the `component_url` is malformed.
276    pub fn r#start_stub(
277        &self,
278        mut component_url: &str,
279        ___deadline: zx::MonotonicInstant,
280    ) -> Result<ControllerStartStubResult, fidl::Error> {
281        let _response = self.client.send_query::<
282            ControllerStartStubRequest,
283            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
284        >(
285            (component_url,),
286            0x6523a401f22bf664,
287            fidl::encoding::DynamicFlags::empty(),
288            ___deadline,
289        )?;
290        Ok(_response.map(|x| x))
291    }
292
293    /// Stops the currently running stub.
294    ///
295    /// Other existing hermetic network realm components will continue to be run
296    /// after this is invoked.
297    ///
298    /// * error `HERMETIC_NETWORK_REALM_NOT_RUNNING` if there is no running
299    ///     hermetic network realm.
300    /// * error `STUB_NOT_RUNNING` if there is no running stub.
301    /// * error `INTERNAL` for internal errors, including failure to destroy the
302    ///     stub component.
303    pub fn r#stop_stub(
304        &self,
305        ___deadline: zx::MonotonicInstant,
306    ) -> Result<ControllerStopStubResult, fidl::Error> {
307        let _response = self.client.send_query::<
308            fidl::encoding::EmptyPayload,
309            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
310        >(
311            (),
312            0x582c32b564ff4bb4,
313            fidl::encoding::DynamicFlags::empty(),
314            ___deadline,
315        )?;
316        Ok(_response.map(|x| x))
317    }
318
319    /// Sends an ICMP echo request to the `target` using a socket provided by
320    /// the hermetic Netstack.
321    ///
322    /// + request `target` the address to ping.
323    /// + request `payload_length` the body size of the ICMP packet.
324    ///     Specifically, the packet body will be filled with zeros of
325    ///     `payload_length`.
326    /// + request `interface_name` an optional interface to bind the socket to.
327    /// + request `timeout` a timeout in nanoseconds to wait for a reply. If
328    ///     less than or equal to 0, then returns success immediately after the
329    ///     ping is sent.
330    /// * error `HERMETIC_NETWORK_REALM_NOT_RUNNING` if there is no running
331    ///     hermetic network realm.
332    /// * error `INTERFACE_NOT_FOUND` if `interface_name` does not exist in the
333    ///     hermetic Netstack.
334    /// * error `INTERNAL` for internal errors, including failure to create a
335    ///     socket or generate the ping request and response.
336    /// * error `INVALID_ARGUMENTS` if `target` corresponds to a link-local
337    ///     address and an `interface_name` is not specified or the
338    ///     `payload_length` exceeds the maximum allowable size.
339    /// * error `PING_FAILED` if there was an error sending or receiving the
340    ///     ping.
341    /// * error `TIMEOUT_EXCEEDED` if the ping reply is not received before the
342    ///     specifed `timeout`.
343    pub fn r#ping(
344        &self,
345        mut target: &fidl_fuchsia_net::IpAddress,
346        mut payload_length: u16,
347        mut interface_name: Option<&str>,
348        mut timeout: i64,
349        ___deadline: zx::MonotonicInstant,
350    ) -> Result<ControllerPingResult, fidl::Error> {
351        let _response = self.client.send_query::<
352            ControllerPingRequest,
353            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
354        >(
355            (target, payload_length, interface_name, timeout,),
356            0x60c9b6cf952fa4d1,
357            fidl::encoding::DynamicFlags::empty(),
358            ___deadline,
359        )?;
360        Ok(_response.map(|x| x))
361    }
362
363    /// Polls the specified socket address with UDP datagrams containing the specified payload
364    /// using a socket provided by the hermetic Netstack.
365    ///
366    /// Waits for a single reply from the target address and returns it.
367    ///
368    /// + request `target` the socket address to poll.
369    /// + request `payload` the content to place in the UDP datagram.
370    /// + request `timeout` a timeout in nanoseconds to wait for a reply, per retry.
371    /// + request `num_retries` the number of poll attempts to make before giving up and returning
372    ///     an error.
373    /// * error `HERMETIC_NETWORK_REALM_NOT_RUNNING` if there is no running
374    ///     hermetic network realm.
375    /// * error `ADDRESS_UNREACHABLE` if all poll attempts expire without successfully receiving
376    ///     a reply from the target address, and no route was found to the target address.
377    /// * error `TIMEOUT_EXCEEDED` if the target address was routable, but all of the retry
378    ///     attempts expire without successfully receiving a reply from the target address.
379    /// * error `INTERNAL` for internal errors, including failure to create a socket or other
380    ///     failures to send/receive datagrams from the target address.
381    pub fn r#poll_udp(
382        &self,
383        mut target: &fidl_fuchsia_net::SocketAddress,
384        mut payload: &[u8],
385        mut timeout: i64,
386        mut num_retries: u16,
387        ___deadline: zx::MonotonicInstant,
388    ) -> Result<ControllerPollUdpResult, fidl::Error> {
389        let _response = self.client.send_query::<
390            ControllerPollUdpRequest,
391            fidl::encoding::ResultType<ControllerPollUdpResponse, Error>,
392        >(
393            (target, payload, timeout, num_retries,),
394            0x333fb354db30f664,
395            fidl::encoding::DynamicFlags::empty(),
396            ___deadline,
397        )?;
398        Ok(_response.map(|x| x.payload))
399    }
400
401    /// Joins a multicast group.
402    ///
403    /// Membership will be maintained until `LeaveMulticastGroup` or
404    /// `StopHermeticNetworkRealm` is invoked.
405    ///
406    /// + request `address` the group address to join.
407    /// + request `interface_id` the interface that should be used to join the
408    ///     group. A value of 0 indicates that any interface may be used.
409    /// * error `ADDRESS_IN_USE` if the provided `address` was previously
410    ///     joined.
411    /// * error `HERMETIC_NETWORK_REALM_NOT_RUNNING` if there is no running
412    ///     hermetic network realm.
413    /// * error `INTERNAL` for internal errors.
414    /// * error `INVALID_ARGUMENTS` if the specified `interface_id` does not
415    ///     exist or the `address` does not correspond to a valid multicast
416    ///     address.
417    pub fn r#join_multicast_group(
418        &self,
419        mut address: &fidl_fuchsia_net::IpAddress,
420        mut interface_id: u64,
421        ___deadline: zx::MonotonicInstant,
422    ) -> Result<ControllerJoinMulticastGroupResult, fidl::Error> {
423        let _response = self.client.send_query::<
424            ControllerJoinMulticastGroupRequest,
425            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
426        >(
427            (address, interface_id,),
428            0xbdbb4095640a3f4,
429            fidl::encoding::DynamicFlags::empty(),
430            ___deadline,
431        )?;
432        Ok(_response.map(|x| x))
433    }
434
435    /// Leaves a multicast group that was previously joined using the
436    /// `JoinMulticastGroup` method.
437    ///
438    /// + request `address` the group address to leave.
439    /// + request `interface_id` the interface that was previously used to join
440    ///     the multicast group.
441    /// * error `ADDRESS_NOT_AVAILABLE` if the provided `address` was not
442    ///     previously joined.
443    /// * error `HERMETIC_NETWORK_REALM_NOT_RUNNING` if there is no running
444    ///     hermetic network realm.
445    /// * error `INTERNAL` for internal errors, including failure to connect
446    ///     to hermetic network realm services.
447    /// * error `INVALID_ARGUMENTS` if the specified `interface_id` does not
448    ///     exist or the `address` does not correspond to a valid multicast
449    ///     address.
450    pub fn r#leave_multicast_group(
451        &self,
452        mut address: &fidl_fuchsia_net::IpAddress,
453        mut interface_id: u64,
454        ___deadline: zx::MonotonicInstant,
455    ) -> Result<ControllerLeaveMulticastGroupResult, fidl::Error> {
456        let _response = self.client.send_query::<
457            ControllerLeaveMulticastGroupRequest,
458            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
459        >(
460            (address, interface_id,),
461            0x32ecf4e40124a29a,
462            fidl::encoding::DynamicFlags::empty(),
463            ___deadline,
464        )?;
465        Ok(_response.map(|x| x))
466    }
467
468    /// Starts a DHCPv6 client with the provided parameters.
469    ///
470    /// + request `params` parameters to start this DHCPv6 client with.
471    ///     Required.
472    /// * error `HERMETIC_NETWORK_REALM_NOT_RUNNING` if there is no running
473    ///     hermetic network realm.
474    /// * error `INTERNAL` for internal errors, including failure to connect
475    ///     to hermetic network realm services.
476    /// * error `INVALID_ARGUMENTS` if any required parameters are omitted.
477    /// * error `ALREADY_EXISTS` if there is a client running on the interface
478    ///     identified by `params.interface_id` already.
479    pub fn r#start_dhcpv6_client(
480        &self,
481        mut params: &fidl_fuchsia_net_dhcpv6::NewClientParams,
482        ___deadline: zx::MonotonicInstant,
483    ) -> Result<ControllerStartDhcpv6ClientResult, fidl::Error> {
484        let _response = self.client.send_query::<
485            ControllerStartDhcpv6ClientRequest,
486            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
487        >(
488            (params,),
489            0x756c9b70864b7744,
490            fidl::encoding::DynamicFlags::empty(),
491            ___deadline,
492        )?;
493        Ok(_response.map(|x| x))
494    }
495
496    /// Stops all DHCPv6 clients.
497    ///
498    /// * error `DHCPV6_CLIENT_NOT_RUNNING` if no DHCPv6 client is running.
499    pub fn r#stop_dhcpv6_client(
500        &self,
501        ___deadline: zx::MonotonicInstant,
502    ) -> Result<ControllerStopDhcpv6ClientResult, fidl::Error> {
503        let _response = self.client.send_query::<
504            fidl::encoding::EmptyPayload,
505            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
506        >(
507            (),
508            0x16e93478e663d523,
509            fidl::encoding::DynamicFlags::empty(),
510            ___deadline,
511        )?;
512        Ok(_response.map(|x| x))
513    }
514
515    /// Starts a DHCPv4 client on the provided interface.
516    ///
517    /// + request `interface_id` the interface to start a DHCPv4 client on.
518    ///     Required.
519    pub fn r#start_out_of_stack_dhcpv4_client(
520        &self,
521        mut payload: &ControllerStartOutOfStackDhcpv4ClientRequest,
522        ___deadline: zx::MonotonicInstant,
523    ) -> Result<ControllerStartOutOfStackDhcpv4ClientResult, fidl::Error> {
524        let _response = self.client.send_query::<
525            ControllerStartOutOfStackDhcpv4ClientRequest,
526            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
527        >(
528            payload,
529            0x37eeec41c0077625,
530            fidl::encoding::DynamicFlags::empty(),
531            ___deadline,
532        )?;
533        Ok(_response.map(|x| x))
534    }
535
536    /// Stops the DHCPv4 client on the provided interface.
537    ///
538    /// + request `interface_id` the interface to stop a DHCPv4 client client on.
539    ///     Required.
540    /// * error `DHCPV4_CLIENT_NOT_RUNNING` if no DHCPv4 client is running.
541    /// * error `DHCPV4_CLIENT_SHUTDOWN_FAILED` if shutting down the DHCPv4 client
542    ///   failed.
543    pub fn r#stop_out_of_stack_dhcpv4_client(
544        &self,
545        mut payload: &ControllerStopOutOfStackDhcpv4ClientRequest,
546        ___deadline: zx::MonotonicInstant,
547    ) -> Result<ControllerStopOutOfStackDhcpv4ClientResult, fidl::Error> {
548        let _response = self.client.send_query::<
549            ControllerStopOutOfStackDhcpv4ClientRequest,
550            fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
551        >(
552            payload,
553            0x5d47aa5213164364,
554            fidl::encoding::DynamicFlags::empty(),
555            ___deadline,
556        )?;
557        Ok(_response.map(|x| x))
558    }
559}
560
561#[cfg(target_os = "fuchsia")]
562impl From<ControllerSynchronousProxy> for zx::Handle {
563    fn from(value: ControllerSynchronousProxy) -> Self {
564        value.into_channel().into()
565    }
566}
567
568#[cfg(target_os = "fuchsia")]
569impl From<fidl::Channel> for ControllerSynchronousProxy {
570    fn from(value: fidl::Channel) -> Self {
571        Self::new(value)
572    }
573}
574
575#[derive(Debug, Clone)]
576pub struct ControllerProxy {
577    client: fidl::client::Client<fidl::encoding::DefaultFuchsiaResourceDialect>,
578}
579
580impl fidl::endpoints::Proxy for ControllerProxy {
581    type Protocol = ControllerMarker;
582
583    fn from_channel(inner: ::fidl::AsyncChannel) -> Self {
584        Self::new(inner)
585    }
586
587    fn into_channel(self) -> Result<::fidl::AsyncChannel, Self> {
588        self.client.into_channel().map_err(|client| Self { client })
589    }
590
591    fn as_channel(&self) -> &::fidl::AsyncChannel {
592        self.client.as_channel()
593    }
594}
595
596impl ControllerProxy {
597    /// Create a new Proxy for fuchsia.net.test.realm/Controller.
598    pub fn new(channel: ::fidl::AsyncChannel) -> Self {
599        let protocol_name = <ControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME;
600        Self { client: fidl::client::Client::new(channel, protocol_name) }
601    }
602
603    /// Get a Stream of events from the remote end of the protocol.
604    ///
605    /// # Panics
606    ///
607    /// Panics if the event stream was already taken.
608    pub fn take_event_stream(&self) -> ControllerEventStream {
609        ControllerEventStream { event_receiver: self.client.take_event_receiver() }
610    }
611
612    /// Starts a hermetic network realm corresponding to `netstack`.
613    ///
614    /// Any previously running hermetic network realm will be terminated before
615    /// the new realm is started. The configured realm will contain a subset of
616    /// the components in the standard network realm. In particular, it will
617    /// contain:
618    ///
619    ///  * A Netstack instance that corresponds to the provided `netstack`
620    ///  * A DHCP server
621    ///  * A DHCPv6 client
622    ///  * A DNS resolver
623    ///
624    /// + request `netstack` the type of Netstack that will be run.
625    /// * error `INTERNAL` for internal errors, including failure to start the
626    ///     specified `netstack`.
627    pub fn r#start_hermetic_network_realm(
628        &self,
629        mut netstack: Netstack,
630    ) -> fidl::client::QueryResponseFut<
631        ControllerStartHermeticNetworkRealmResult,
632        fidl::encoding::DefaultFuchsiaResourceDialect,
633    > {
634        ControllerProxyInterface::r#start_hermetic_network_realm(self, netstack)
635    }
636
637    /// Stops any running hermetic network realm.
638    ///
639    /// All components in the hermetic network realm will be stopped. Similarly,
640    /// any interfaces that were previously disabled on the system's Netstack
641    /// will be re-enabled on a best-effort basis. That is, a failure to
642    /// re-enable an interface will not result in this method returning an
643    /// error.
644    ///
645    /// * error `HERMETIC_NETWORK_REALM_NOT_RUNNING` if a hermetic network realm
646    ///     is not running.
647    /// * error `INTERNAL` for internal errors, including failure to destroy the
648    ///     realm.
649    pub fn r#stop_hermetic_network_realm(
650        &self,
651    ) -> fidl::client::QueryResponseFut<
652        ControllerStopHermeticNetworkRealmResult,
653        fidl::encoding::DefaultFuchsiaResourceDialect,
654    > {
655        ControllerProxyInterface::r#stop_hermetic_network_realm(self)
656    }
657
658    /// Attaches an interface to the hermetic Netstack.
659    ///
660    /// The interface that corresponds to `mac_address` will disabled on the
661    /// system's Netstack, but enabled on the hermetic Netstack.
662    ///
663    /// + request `mac_address` address of the interface to be added to the
664    ///     hermetic Netstack.
665    /// + request `name` the name to assign to the new interface.
666    /// + request `wait_any_ip_address` whether to wait for any IP address to be
667    ///     assigned to the interface before returning. This is helpful for
668    ///     tests that want to ensure the autoconfigured IP address is assigned
669    ///     and has completed duplicate address detection before proceeding.
670    /// * error `ALREADY_EXISTS` if an interface with `name` already exists on
671    ///     the hermetic Netstack.
672    /// * error `HERMETIC_NETWORK_REALM_NOT_RUNNING` if there is no running
673    ///     hermetic network realm.
674    /// * error `INTERFACE_NOT_FOUND` if an interface with `mac_address` could
675    ///     not be found on the system.
676    /// * error `INTERNAL` for internal errors, including failure to read the
677    ///     system's interfaces or configure an interface.
678    pub fn r#add_interface(
679        &self,
680        mut mac_address: &fidl_fuchsia_net::MacAddress,
681        mut name: &str,
682        mut wait_any_ip_address: bool,
683    ) -> fidl::client::QueryResponseFut<
684        ControllerAddInterfaceResult,
685        fidl::encoding::DefaultFuchsiaResourceDialect,
686    > {
687        ControllerProxyInterface::r#add_interface(self, mac_address, name, wait_any_ip_address)
688    }
689
690    /// Starts a test stub.
691    ///
692    /// Any previously running stub will be terminated before the provided
693    /// stub corresponding to `component_url` is started.
694    ///
695    /// + request `component_url` the URL of the component to run.
696    /// * error `COMPONENT_NOT_FOUND` if a component correspodning to
697    ///     `component_url` could not be resolved.
698    /// * error `HERMETIC_NETWORK_REALM_NOT_RUNNING` if there is no running
699    ///     hermetic network realm.
700    /// * error `INTERNAL` for internal errors, including failure to add the
701    ///     desired stub within the hermetic network realm.
702    /// * error `INVALID_ARGUMENTS` if the `component_url` is malformed.
703    pub fn r#start_stub(
704        &self,
705        mut component_url: &str,
706    ) -> fidl::client::QueryResponseFut<
707        ControllerStartStubResult,
708        fidl::encoding::DefaultFuchsiaResourceDialect,
709    > {
710        ControllerProxyInterface::r#start_stub(self, component_url)
711    }
712
713    /// Stops the currently running stub.
714    ///
715    /// Other existing hermetic network realm components will continue to be run
716    /// after this is invoked.
717    ///
718    /// * error `HERMETIC_NETWORK_REALM_NOT_RUNNING` if there is no running
719    ///     hermetic network realm.
720    /// * error `STUB_NOT_RUNNING` if there is no running stub.
721    /// * error `INTERNAL` for internal errors, including failure to destroy the
722    ///     stub component.
723    pub fn r#stop_stub(
724        &self,
725    ) -> fidl::client::QueryResponseFut<
726        ControllerStopStubResult,
727        fidl::encoding::DefaultFuchsiaResourceDialect,
728    > {
729        ControllerProxyInterface::r#stop_stub(self)
730    }
731
732    /// Sends an ICMP echo request to the `target` using a socket provided by
733    /// the hermetic Netstack.
734    ///
735    /// + request `target` the address to ping.
736    /// + request `payload_length` the body size of the ICMP packet.
737    ///     Specifically, the packet body will be filled with zeros of
738    ///     `payload_length`.
739    /// + request `interface_name` an optional interface to bind the socket to.
740    /// + request `timeout` a timeout in nanoseconds to wait for a reply. If
741    ///     less than or equal to 0, then returns success immediately after the
742    ///     ping is sent.
743    /// * error `HERMETIC_NETWORK_REALM_NOT_RUNNING` if there is no running
744    ///     hermetic network realm.
745    /// * error `INTERFACE_NOT_FOUND` if `interface_name` does not exist in the
746    ///     hermetic Netstack.
747    /// * error `INTERNAL` for internal errors, including failure to create a
748    ///     socket or generate the ping request and response.
749    /// * error `INVALID_ARGUMENTS` if `target` corresponds to a link-local
750    ///     address and an `interface_name` is not specified or the
751    ///     `payload_length` exceeds the maximum allowable size.
752    /// * error `PING_FAILED` if there was an error sending or receiving the
753    ///     ping.
754    /// * error `TIMEOUT_EXCEEDED` if the ping reply is not received before the
755    ///     specifed `timeout`.
756    pub fn r#ping(
757        &self,
758        mut target: &fidl_fuchsia_net::IpAddress,
759        mut payload_length: u16,
760        mut interface_name: Option<&str>,
761        mut timeout: i64,
762    ) -> fidl::client::QueryResponseFut<
763        ControllerPingResult,
764        fidl::encoding::DefaultFuchsiaResourceDialect,
765    > {
766        ControllerProxyInterface::r#ping(self, target, payload_length, interface_name, timeout)
767    }
768
769    /// Polls the specified socket address with UDP datagrams containing the specified payload
770    /// using a socket provided by the hermetic Netstack.
771    ///
772    /// Waits for a single reply from the target address and returns it.
773    ///
774    /// + request `target` the socket address to poll.
775    /// + request `payload` the content to place in the UDP datagram.
776    /// + request `timeout` a timeout in nanoseconds to wait for a reply, per retry.
777    /// + request `num_retries` the number of poll attempts to make before giving up and returning
778    ///     an error.
779    /// * error `HERMETIC_NETWORK_REALM_NOT_RUNNING` if there is no running
780    ///     hermetic network realm.
781    /// * error `ADDRESS_UNREACHABLE` if all poll attempts expire without successfully receiving
782    ///     a reply from the target address, and no route was found to the target address.
783    /// * error `TIMEOUT_EXCEEDED` if the target address was routable, but all of the retry
784    ///     attempts expire without successfully receiving a reply from the target address.
785    /// * error `INTERNAL` for internal errors, including failure to create a socket or other
786    ///     failures to send/receive datagrams from the target address.
787    pub fn r#poll_udp(
788        &self,
789        mut target: &fidl_fuchsia_net::SocketAddress,
790        mut payload: &[u8],
791        mut timeout: i64,
792        mut num_retries: u16,
793    ) -> fidl::client::QueryResponseFut<
794        ControllerPollUdpResult,
795        fidl::encoding::DefaultFuchsiaResourceDialect,
796    > {
797        ControllerProxyInterface::r#poll_udp(self, target, payload, timeout, num_retries)
798    }
799
800    /// Joins a multicast group.
801    ///
802    /// Membership will be maintained until `LeaveMulticastGroup` or
803    /// `StopHermeticNetworkRealm` is invoked.
804    ///
805    /// + request `address` the group address to join.
806    /// + request `interface_id` the interface that should be used to join the
807    ///     group. A value of 0 indicates that any interface may be used.
808    /// * error `ADDRESS_IN_USE` if the provided `address` was previously
809    ///     joined.
810    /// * error `HERMETIC_NETWORK_REALM_NOT_RUNNING` if there is no running
811    ///     hermetic network realm.
812    /// * error `INTERNAL` for internal errors.
813    /// * error `INVALID_ARGUMENTS` if the specified `interface_id` does not
814    ///     exist or the `address` does not correspond to a valid multicast
815    ///     address.
816    pub fn r#join_multicast_group(
817        &self,
818        mut address: &fidl_fuchsia_net::IpAddress,
819        mut interface_id: u64,
820    ) -> fidl::client::QueryResponseFut<
821        ControllerJoinMulticastGroupResult,
822        fidl::encoding::DefaultFuchsiaResourceDialect,
823    > {
824        ControllerProxyInterface::r#join_multicast_group(self, address, interface_id)
825    }
826
827    /// Leaves a multicast group that was previously joined using the
828    /// `JoinMulticastGroup` method.
829    ///
830    /// + request `address` the group address to leave.
831    /// + request `interface_id` the interface that was previously used to join
832    ///     the multicast group.
833    /// * error `ADDRESS_NOT_AVAILABLE` if the provided `address` was not
834    ///     previously joined.
835    /// * error `HERMETIC_NETWORK_REALM_NOT_RUNNING` if there is no running
836    ///     hermetic network realm.
837    /// * error `INTERNAL` for internal errors, including failure to connect
838    ///     to hermetic network realm services.
839    /// * error `INVALID_ARGUMENTS` if the specified `interface_id` does not
840    ///     exist or the `address` does not correspond to a valid multicast
841    ///     address.
842    pub fn r#leave_multicast_group(
843        &self,
844        mut address: &fidl_fuchsia_net::IpAddress,
845        mut interface_id: u64,
846    ) -> fidl::client::QueryResponseFut<
847        ControllerLeaveMulticastGroupResult,
848        fidl::encoding::DefaultFuchsiaResourceDialect,
849    > {
850        ControllerProxyInterface::r#leave_multicast_group(self, address, interface_id)
851    }
852
853    /// Starts a DHCPv6 client with the provided parameters.
854    ///
855    /// + request `params` parameters to start this DHCPv6 client with.
856    ///     Required.
857    /// * error `HERMETIC_NETWORK_REALM_NOT_RUNNING` if there is no running
858    ///     hermetic network realm.
859    /// * error `INTERNAL` for internal errors, including failure to connect
860    ///     to hermetic network realm services.
861    /// * error `INVALID_ARGUMENTS` if any required parameters are omitted.
862    /// * error `ALREADY_EXISTS` if there is a client running on the interface
863    ///     identified by `params.interface_id` already.
864    pub fn r#start_dhcpv6_client(
865        &self,
866        mut params: &fidl_fuchsia_net_dhcpv6::NewClientParams,
867    ) -> fidl::client::QueryResponseFut<
868        ControllerStartDhcpv6ClientResult,
869        fidl::encoding::DefaultFuchsiaResourceDialect,
870    > {
871        ControllerProxyInterface::r#start_dhcpv6_client(self, params)
872    }
873
874    /// Stops all DHCPv6 clients.
875    ///
876    /// * error `DHCPV6_CLIENT_NOT_RUNNING` if no DHCPv6 client is running.
877    pub fn r#stop_dhcpv6_client(
878        &self,
879    ) -> fidl::client::QueryResponseFut<
880        ControllerStopDhcpv6ClientResult,
881        fidl::encoding::DefaultFuchsiaResourceDialect,
882    > {
883        ControllerProxyInterface::r#stop_dhcpv6_client(self)
884    }
885
886    /// Starts a DHCPv4 client on the provided interface.
887    ///
888    /// + request `interface_id` the interface to start a DHCPv4 client on.
889    ///     Required.
890    pub fn r#start_out_of_stack_dhcpv4_client(
891        &self,
892        mut payload: &ControllerStartOutOfStackDhcpv4ClientRequest,
893    ) -> fidl::client::QueryResponseFut<
894        ControllerStartOutOfStackDhcpv4ClientResult,
895        fidl::encoding::DefaultFuchsiaResourceDialect,
896    > {
897        ControllerProxyInterface::r#start_out_of_stack_dhcpv4_client(self, payload)
898    }
899
900    /// Stops the DHCPv4 client on the provided interface.
901    ///
902    /// + request `interface_id` the interface to stop a DHCPv4 client client on.
903    ///     Required.
904    /// * error `DHCPV4_CLIENT_NOT_RUNNING` if no DHCPv4 client is running.
905    /// * error `DHCPV4_CLIENT_SHUTDOWN_FAILED` if shutting down the DHCPv4 client
906    ///   failed.
907    pub fn r#stop_out_of_stack_dhcpv4_client(
908        &self,
909        mut payload: &ControllerStopOutOfStackDhcpv4ClientRequest,
910    ) -> fidl::client::QueryResponseFut<
911        ControllerStopOutOfStackDhcpv4ClientResult,
912        fidl::encoding::DefaultFuchsiaResourceDialect,
913    > {
914        ControllerProxyInterface::r#stop_out_of_stack_dhcpv4_client(self, payload)
915    }
916}
917
918impl ControllerProxyInterface for ControllerProxy {
919    type StartHermeticNetworkRealmResponseFut = fidl::client::QueryResponseFut<
920        ControllerStartHermeticNetworkRealmResult,
921        fidl::encoding::DefaultFuchsiaResourceDialect,
922    >;
923    fn r#start_hermetic_network_realm(
924        &self,
925        mut netstack: Netstack,
926    ) -> Self::StartHermeticNetworkRealmResponseFut {
927        fn _decode(
928            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
929        ) -> Result<ControllerStartHermeticNetworkRealmResult, fidl::Error> {
930            let _response = fidl::client::decode_transaction_body::<
931                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
932                fidl::encoding::DefaultFuchsiaResourceDialect,
933                0x58c1fa7335d4c5c2,
934            >(_buf?)?;
935            Ok(_response.map(|x| x))
936        }
937        self.client.send_query_and_decode::<
938            ControllerStartHermeticNetworkRealmRequest,
939            ControllerStartHermeticNetworkRealmResult,
940        >(
941            (netstack,),
942            0x58c1fa7335d4c5c2,
943            fidl::encoding::DynamicFlags::empty(),
944            _decode,
945        )
946    }
947
948    type StopHermeticNetworkRealmResponseFut = fidl::client::QueryResponseFut<
949        ControllerStopHermeticNetworkRealmResult,
950        fidl::encoding::DefaultFuchsiaResourceDialect,
951    >;
952    fn r#stop_hermetic_network_realm(&self) -> Self::StopHermeticNetworkRealmResponseFut {
953        fn _decode(
954            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
955        ) -> Result<ControllerStopHermeticNetworkRealmResult, fidl::Error> {
956            let _response = fidl::client::decode_transaction_body::<
957                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
958                fidl::encoding::DefaultFuchsiaResourceDialect,
959                0x49d3c2501cd2f635,
960            >(_buf?)?;
961            Ok(_response.map(|x| x))
962        }
963        self.client.send_query_and_decode::<
964            fidl::encoding::EmptyPayload,
965            ControllerStopHermeticNetworkRealmResult,
966        >(
967            (),
968            0x49d3c2501cd2f635,
969            fidl::encoding::DynamicFlags::empty(),
970            _decode,
971        )
972    }
973
974    type AddInterfaceResponseFut = fidl::client::QueryResponseFut<
975        ControllerAddInterfaceResult,
976        fidl::encoding::DefaultFuchsiaResourceDialect,
977    >;
978    fn r#add_interface(
979        &self,
980        mut mac_address: &fidl_fuchsia_net::MacAddress,
981        mut name: &str,
982        mut wait_any_ip_address: bool,
983    ) -> Self::AddInterfaceResponseFut {
984        fn _decode(
985            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
986        ) -> Result<ControllerAddInterfaceResult, fidl::Error> {
987            let _response = fidl::client::decode_transaction_body::<
988                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
989                fidl::encoding::DefaultFuchsiaResourceDialect,
990                0x668ded2d2b619c15,
991            >(_buf?)?;
992            Ok(_response.map(|x| x))
993        }
994        self.client
995            .send_query_and_decode::<ControllerAddInterfaceRequest, ControllerAddInterfaceResult>(
996                (mac_address, name, wait_any_ip_address),
997                0x668ded2d2b619c15,
998                fidl::encoding::DynamicFlags::empty(),
999                _decode,
1000            )
1001    }
1002
1003    type StartStubResponseFut = fidl::client::QueryResponseFut<
1004        ControllerStartStubResult,
1005        fidl::encoding::DefaultFuchsiaResourceDialect,
1006    >;
1007    fn r#start_stub(&self, mut component_url: &str) -> Self::StartStubResponseFut {
1008        fn _decode(
1009            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
1010        ) -> Result<ControllerStartStubResult, fidl::Error> {
1011            let _response = fidl::client::decode_transaction_body::<
1012                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
1013                fidl::encoding::DefaultFuchsiaResourceDialect,
1014                0x6523a401f22bf664,
1015            >(_buf?)?;
1016            Ok(_response.map(|x| x))
1017        }
1018        self.client.send_query_and_decode::<ControllerStartStubRequest, ControllerStartStubResult>(
1019            (component_url,),
1020            0x6523a401f22bf664,
1021            fidl::encoding::DynamicFlags::empty(),
1022            _decode,
1023        )
1024    }
1025
1026    type StopStubResponseFut = fidl::client::QueryResponseFut<
1027        ControllerStopStubResult,
1028        fidl::encoding::DefaultFuchsiaResourceDialect,
1029    >;
1030    fn r#stop_stub(&self) -> Self::StopStubResponseFut {
1031        fn _decode(
1032            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
1033        ) -> Result<ControllerStopStubResult, fidl::Error> {
1034            let _response = fidl::client::decode_transaction_body::<
1035                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
1036                fidl::encoding::DefaultFuchsiaResourceDialect,
1037                0x582c32b564ff4bb4,
1038            >(_buf?)?;
1039            Ok(_response.map(|x| x))
1040        }
1041        self.client.send_query_and_decode::<fidl::encoding::EmptyPayload, ControllerStopStubResult>(
1042            (),
1043            0x582c32b564ff4bb4,
1044            fidl::encoding::DynamicFlags::empty(),
1045            _decode,
1046        )
1047    }
1048
1049    type PingResponseFut = fidl::client::QueryResponseFut<
1050        ControllerPingResult,
1051        fidl::encoding::DefaultFuchsiaResourceDialect,
1052    >;
1053    fn r#ping(
1054        &self,
1055        mut target: &fidl_fuchsia_net::IpAddress,
1056        mut payload_length: u16,
1057        mut interface_name: Option<&str>,
1058        mut timeout: i64,
1059    ) -> Self::PingResponseFut {
1060        fn _decode(
1061            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
1062        ) -> Result<ControllerPingResult, fidl::Error> {
1063            let _response = fidl::client::decode_transaction_body::<
1064                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
1065                fidl::encoding::DefaultFuchsiaResourceDialect,
1066                0x60c9b6cf952fa4d1,
1067            >(_buf?)?;
1068            Ok(_response.map(|x| x))
1069        }
1070        self.client.send_query_and_decode::<ControllerPingRequest, ControllerPingResult>(
1071            (target, payload_length, interface_name, timeout),
1072            0x60c9b6cf952fa4d1,
1073            fidl::encoding::DynamicFlags::empty(),
1074            _decode,
1075        )
1076    }
1077
1078    type PollUdpResponseFut = fidl::client::QueryResponseFut<
1079        ControllerPollUdpResult,
1080        fidl::encoding::DefaultFuchsiaResourceDialect,
1081    >;
1082    fn r#poll_udp(
1083        &self,
1084        mut target: &fidl_fuchsia_net::SocketAddress,
1085        mut payload: &[u8],
1086        mut timeout: i64,
1087        mut num_retries: u16,
1088    ) -> Self::PollUdpResponseFut {
1089        fn _decode(
1090            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
1091        ) -> Result<ControllerPollUdpResult, fidl::Error> {
1092            let _response = fidl::client::decode_transaction_body::<
1093                fidl::encoding::ResultType<ControllerPollUdpResponse, Error>,
1094                fidl::encoding::DefaultFuchsiaResourceDialect,
1095                0x333fb354db30f664,
1096            >(_buf?)?;
1097            Ok(_response.map(|x| x.payload))
1098        }
1099        self.client.send_query_and_decode::<ControllerPollUdpRequest, ControllerPollUdpResult>(
1100            (target, payload, timeout, num_retries),
1101            0x333fb354db30f664,
1102            fidl::encoding::DynamicFlags::empty(),
1103            _decode,
1104        )
1105    }
1106
1107    type JoinMulticastGroupResponseFut = fidl::client::QueryResponseFut<
1108        ControllerJoinMulticastGroupResult,
1109        fidl::encoding::DefaultFuchsiaResourceDialect,
1110    >;
1111    fn r#join_multicast_group(
1112        &self,
1113        mut address: &fidl_fuchsia_net::IpAddress,
1114        mut interface_id: u64,
1115    ) -> Self::JoinMulticastGroupResponseFut {
1116        fn _decode(
1117            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
1118        ) -> Result<ControllerJoinMulticastGroupResult, fidl::Error> {
1119            let _response = fidl::client::decode_transaction_body::<
1120                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
1121                fidl::encoding::DefaultFuchsiaResourceDialect,
1122                0xbdbb4095640a3f4,
1123            >(_buf?)?;
1124            Ok(_response.map(|x| x))
1125        }
1126        self.client.send_query_and_decode::<
1127            ControllerJoinMulticastGroupRequest,
1128            ControllerJoinMulticastGroupResult,
1129        >(
1130            (address, interface_id,),
1131            0xbdbb4095640a3f4,
1132            fidl::encoding::DynamicFlags::empty(),
1133            _decode,
1134        )
1135    }
1136
1137    type LeaveMulticastGroupResponseFut = fidl::client::QueryResponseFut<
1138        ControllerLeaveMulticastGroupResult,
1139        fidl::encoding::DefaultFuchsiaResourceDialect,
1140    >;
1141    fn r#leave_multicast_group(
1142        &self,
1143        mut address: &fidl_fuchsia_net::IpAddress,
1144        mut interface_id: u64,
1145    ) -> Self::LeaveMulticastGroupResponseFut {
1146        fn _decode(
1147            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
1148        ) -> Result<ControllerLeaveMulticastGroupResult, fidl::Error> {
1149            let _response = fidl::client::decode_transaction_body::<
1150                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
1151                fidl::encoding::DefaultFuchsiaResourceDialect,
1152                0x32ecf4e40124a29a,
1153            >(_buf?)?;
1154            Ok(_response.map(|x| x))
1155        }
1156        self.client.send_query_and_decode::<
1157            ControllerLeaveMulticastGroupRequest,
1158            ControllerLeaveMulticastGroupResult,
1159        >(
1160            (address, interface_id,),
1161            0x32ecf4e40124a29a,
1162            fidl::encoding::DynamicFlags::empty(),
1163            _decode,
1164        )
1165    }
1166
1167    type StartDhcpv6ClientResponseFut = fidl::client::QueryResponseFut<
1168        ControllerStartDhcpv6ClientResult,
1169        fidl::encoding::DefaultFuchsiaResourceDialect,
1170    >;
1171    fn r#start_dhcpv6_client(
1172        &self,
1173        mut params: &fidl_fuchsia_net_dhcpv6::NewClientParams,
1174    ) -> Self::StartDhcpv6ClientResponseFut {
1175        fn _decode(
1176            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
1177        ) -> Result<ControllerStartDhcpv6ClientResult, fidl::Error> {
1178            let _response = fidl::client::decode_transaction_body::<
1179                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
1180                fidl::encoding::DefaultFuchsiaResourceDialect,
1181                0x756c9b70864b7744,
1182            >(_buf?)?;
1183            Ok(_response.map(|x| x))
1184        }
1185        self.client.send_query_and_decode::<
1186            ControllerStartDhcpv6ClientRequest,
1187            ControllerStartDhcpv6ClientResult,
1188        >(
1189            (params,),
1190            0x756c9b70864b7744,
1191            fidl::encoding::DynamicFlags::empty(),
1192            _decode,
1193        )
1194    }
1195
1196    type StopDhcpv6ClientResponseFut = fidl::client::QueryResponseFut<
1197        ControllerStopDhcpv6ClientResult,
1198        fidl::encoding::DefaultFuchsiaResourceDialect,
1199    >;
1200    fn r#stop_dhcpv6_client(&self) -> Self::StopDhcpv6ClientResponseFut {
1201        fn _decode(
1202            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
1203        ) -> Result<ControllerStopDhcpv6ClientResult, fidl::Error> {
1204            let _response = fidl::client::decode_transaction_body::<
1205                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
1206                fidl::encoding::DefaultFuchsiaResourceDialect,
1207                0x16e93478e663d523,
1208            >(_buf?)?;
1209            Ok(_response.map(|x| x))
1210        }
1211        self.client.send_query_and_decode::<
1212            fidl::encoding::EmptyPayload,
1213            ControllerStopDhcpv6ClientResult,
1214        >(
1215            (),
1216            0x16e93478e663d523,
1217            fidl::encoding::DynamicFlags::empty(),
1218            _decode,
1219        )
1220    }
1221
1222    type StartOutOfStackDhcpv4ClientResponseFut = fidl::client::QueryResponseFut<
1223        ControllerStartOutOfStackDhcpv4ClientResult,
1224        fidl::encoding::DefaultFuchsiaResourceDialect,
1225    >;
1226    fn r#start_out_of_stack_dhcpv4_client(
1227        &self,
1228        mut payload: &ControllerStartOutOfStackDhcpv4ClientRequest,
1229    ) -> Self::StartOutOfStackDhcpv4ClientResponseFut {
1230        fn _decode(
1231            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
1232        ) -> Result<ControllerStartOutOfStackDhcpv4ClientResult, fidl::Error> {
1233            let _response = fidl::client::decode_transaction_body::<
1234                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
1235                fidl::encoding::DefaultFuchsiaResourceDialect,
1236                0x37eeec41c0077625,
1237            >(_buf?)?;
1238            Ok(_response.map(|x| x))
1239        }
1240        self.client.send_query_and_decode::<
1241            ControllerStartOutOfStackDhcpv4ClientRequest,
1242            ControllerStartOutOfStackDhcpv4ClientResult,
1243        >(
1244            payload,
1245            0x37eeec41c0077625,
1246            fidl::encoding::DynamicFlags::empty(),
1247            _decode,
1248        )
1249    }
1250
1251    type StopOutOfStackDhcpv4ClientResponseFut = fidl::client::QueryResponseFut<
1252        ControllerStopOutOfStackDhcpv4ClientResult,
1253        fidl::encoding::DefaultFuchsiaResourceDialect,
1254    >;
1255    fn r#stop_out_of_stack_dhcpv4_client(
1256        &self,
1257        mut payload: &ControllerStopOutOfStackDhcpv4ClientRequest,
1258    ) -> Self::StopOutOfStackDhcpv4ClientResponseFut {
1259        fn _decode(
1260            mut _buf: Result<<fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc, fidl::Error>,
1261        ) -> Result<ControllerStopOutOfStackDhcpv4ClientResult, fidl::Error> {
1262            let _response = fidl::client::decode_transaction_body::<
1263                fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>,
1264                fidl::encoding::DefaultFuchsiaResourceDialect,
1265                0x5d47aa5213164364,
1266            >(_buf?)?;
1267            Ok(_response.map(|x| x))
1268        }
1269        self.client.send_query_and_decode::<
1270            ControllerStopOutOfStackDhcpv4ClientRequest,
1271            ControllerStopOutOfStackDhcpv4ClientResult,
1272        >(
1273            payload,
1274            0x5d47aa5213164364,
1275            fidl::encoding::DynamicFlags::empty(),
1276            _decode,
1277        )
1278    }
1279}
1280
1281pub struct ControllerEventStream {
1282    event_receiver: fidl::client::EventReceiver<fidl::encoding::DefaultFuchsiaResourceDialect>,
1283}
1284
1285impl std::marker::Unpin for ControllerEventStream {}
1286
1287impl futures::stream::FusedStream for ControllerEventStream {
1288    fn is_terminated(&self) -> bool {
1289        self.event_receiver.is_terminated()
1290    }
1291}
1292
1293impl futures::Stream for ControllerEventStream {
1294    type Item = Result<ControllerEvent, fidl::Error>;
1295
1296    fn poll_next(
1297        mut self: std::pin::Pin<&mut Self>,
1298        cx: &mut std::task::Context<'_>,
1299    ) -> std::task::Poll<Option<Self::Item>> {
1300        match futures::ready!(futures::stream::StreamExt::poll_next_unpin(
1301            &mut self.event_receiver,
1302            cx
1303        )?) {
1304            Some(buf) => std::task::Poll::Ready(Some(ControllerEvent::decode(buf))),
1305            None => std::task::Poll::Ready(None),
1306        }
1307    }
1308}
1309
1310#[derive(Debug)]
1311pub enum ControllerEvent {}
1312
1313impl ControllerEvent {
1314    /// Decodes a message buffer as a [`ControllerEvent`].
1315    fn decode(
1316        mut buf: <fidl::encoding::DefaultFuchsiaResourceDialect as fidl::encoding::ResourceDialect>::MessageBufEtc,
1317    ) -> Result<ControllerEvent, fidl::Error> {
1318        let (bytes, _handles) = buf.split_mut();
1319        let (tx_header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
1320        debug_assert_eq!(tx_header.tx_id, 0);
1321        match tx_header.ordinal {
1322            _ => Err(fidl::Error::UnknownOrdinal {
1323                ordinal: tx_header.ordinal,
1324                protocol_name: <ControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
1325            }),
1326        }
1327    }
1328}
1329
1330/// A Stream of incoming requests for fuchsia.net.test.realm/Controller.
1331pub struct ControllerRequestStream {
1332    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
1333    is_terminated: bool,
1334}
1335
1336impl std::marker::Unpin for ControllerRequestStream {}
1337
1338impl futures::stream::FusedStream for ControllerRequestStream {
1339    fn is_terminated(&self) -> bool {
1340        self.is_terminated
1341    }
1342}
1343
1344impl fidl::endpoints::RequestStream for ControllerRequestStream {
1345    type Protocol = ControllerMarker;
1346    type ControlHandle = ControllerControlHandle;
1347
1348    fn from_channel(channel: ::fidl::AsyncChannel) -> Self {
1349        Self { inner: std::sync::Arc::new(fidl::ServeInner::new(channel)), is_terminated: false }
1350    }
1351
1352    fn control_handle(&self) -> Self::ControlHandle {
1353        ControllerControlHandle { inner: self.inner.clone() }
1354    }
1355
1356    fn into_inner(
1357        self,
1358    ) -> (::std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>, bool)
1359    {
1360        (self.inner, self.is_terminated)
1361    }
1362
1363    fn from_inner(
1364        inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
1365        is_terminated: bool,
1366    ) -> Self {
1367        Self { inner, is_terminated }
1368    }
1369}
1370
1371impl futures::Stream for ControllerRequestStream {
1372    type Item = Result<ControllerRequest, fidl::Error>;
1373
1374    fn poll_next(
1375        mut self: std::pin::Pin<&mut Self>,
1376        cx: &mut std::task::Context<'_>,
1377    ) -> std::task::Poll<Option<Self::Item>> {
1378        let this = &mut *self;
1379        if this.inner.check_shutdown(cx) {
1380            this.is_terminated = true;
1381            return std::task::Poll::Ready(None);
1382        }
1383        if this.is_terminated {
1384            panic!("polled ControllerRequestStream after completion");
1385        }
1386        fidl::encoding::with_tls_decode_buf::<_, fidl::encoding::DefaultFuchsiaResourceDialect>(
1387            |bytes, handles| {
1388                match this.inner.channel().read_etc(cx, bytes, handles) {
1389                    std::task::Poll::Ready(Ok(())) => {}
1390                    std::task::Poll::Pending => return std::task::Poll::Pending,
1391                    std::task::Poll::Ready(Err(zx_status::Status::PEER_CLOSED)) => {
1392                        this.is_terminated = true;
1393                        return std::task::Poll::Ready(None);
1394                    }
1395                    std::task::Poll::Ready(Err(e)) => {
1396                        return std::task::Poll::Ready(Some(Err(fidl::Error::ServerRequestRead(
1397                            e.into(),
1398                        ))))
1399                    }
1400                }
1401
1402                // A message has been received from the channel
1403                let (header, _body_bytes) = fidl::encoding::decode_transaction_header(bytes)?;
1404
1405                std::task::Poll::Ready(Some(match header.ordinal {
1406                    0x58c1fa7335d4c5c2 => {
1407                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
1408                        let mut req = fidl::new_empty!(
1409                            ControllerStartHermeticNetworkRealmRequest,
1410                            fidl::encoding::DefaultFuchsiaResourceDialect
1411                        );
1412                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<ControllerStartHermeticNetworkRealmRequest>(&header, _body_bytes, handles, &mut req)?;
1413                        let control_handle = ControllerControlHandle { inner: this.inner.clone() };
1414                        Ok(ControllerRequest::StartHermeticNetworkRealm {
1415                            netstack: req.netstack,
1416
1417                            responder: ControllerStartHermeticNetworkRealmResponder {
1418                                control_handle: std::mem::ManuallyDrop::new(control_handle),
1419                                tx_id: header.tx_id,
1420                            },
1421                        })
1422                    }
1423                    0x49d3c2501cd2f635 => {
1424                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
1425                        let mut req = fidl::new_empty!(
1426                            fidl::encoding::EmptyPayload,
1427                            fidl::encoding::DefaultFuchsiaResourceDialect
1428                        );
1429                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
1430                        let control_handle = ControllerControlHandle { inner: this.inner.clone() };
1431                        Ok(ControllerRequest::StopHermeticNetworkRealm {
1432                            responder: ControllerStopHermeticNetworkRealmResponder {
1433                                control_handle: std::mem::ManuallyDrop::new(control_handle),
1434                                tx_id: header.tx_id,
1435                            },
1436                        })
1437                    }
1438                    0x668ded2d2b619c15 => {
1439                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
1440                        let mut req = fidl::new_empty!(
1441                            ControllerAddInterfaceRequest,
1442                            fidl::encoding::DefaultFuchsiaResourceDialect
1443                        );
1444                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<ControllerAddInterfaceRequest>(&header, _body_bytes, handles, &mut req)?;
1445                        let control_handle = ControllerControlHandle { inner: this.inner.clone() };
1446                        Ok(ControllerRequest::AddInterface {
1447                            mac_address: req.mac_address,
1448                            name: req.name,
1449                            wait_any_ip_address: req.wait_any_ip_address,
1450
1451                            responder: ControllerAddInterfaceResponder {
1452                                control_handle: std::mem::ManuallyDrop::new(control_handle),
1453                                tx_id: header.tx_id,
1454                            },
1455                        })
1456                    }
1457                    0x6523a401f22bf664 => {
1458                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
1459                        let mut req = fidl::new_empty!(
1460                            ControllerStartStubRequest,
1461                            fidl::encoding::DefaultFuchsiaResourceDialect
1462                        );
1463                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<ControllerStartStubRequest>(&header, _body_bytes, handles, &mut req)?;
1464                        let control_handle = ControllerControlHandle { inner: this.inner.clone() };
1465                        Ok(ControllerRequest::StartStub {
1466                            component_url: req.component_url,
1467
1468                            responder: ControllerStartStubResponder {
1469                                control_handle: std::mem::ManuallyDrop::new(control_handle),
1470                                tx_id: header.tx_id,
1471                            },
1472                        })
1473                    }
1474                    0x582c32b564ff4bb4 => {
1475                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
1476                        let mut req = fidl::new_empty!(
1477                            fidl::encoding::EmptyPayload,
1478                            fidl::encoding::DefaultFuchsiaResourceDialect
1479                        );
1480                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
1481                        let control_handle = ControllerControlHandle { inner: this.inner.clone() };
1482                        Ok(ControllerRequest::StopStub {
1483                            responder: ControllerStopStubResponder {
1484                                control_handle: std::mem::ManuallyDrop::new(control_handle),
1485                                tx_id: header.tx_id,
1486                            },
1487                        })
1488                    }
1489                    0x60c9b6cf952fa4d1 => {
1490                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
1491                        let mut req = fidl::new_empty!(
1492                            ControllerPingRequest,
1493                            fidl::encoding::DefaultFuchsiaResourceDialect
1494                        );
1495                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<ControllerPingRequest>(&header, _body_bytes, handles, &mut req)?;
1496                        let control_handle = ControllerControlHandle { inner: this.inner.clone() };
1497                        Ok(ControllerRequest::Ping {
1498                            target: req.target,
1499                            payload_length: req.payload_length,
1500                            interface_name: req.interface_name,
1501                            timeout: req.timeout,
1502
1503                            responder: ControllerPingResponder {
1504                                control_handle: std::mem::ManuallyDrop::new(control_handle),
1505                                tx_id: header.tx_id,
1506                            },
1507                        })
1508                    }
1509                    0x333fb354db30f664 => {
1510                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
1511                        let mut req = fidl::new_empty!(
1512                            ControllerPollUdpRequest,
1513                            fidl::encoding::DefaultFuchsiaResourceDialect
1514                        );
1515                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<ControllerPollUdpRequest>(&header, _body_bytes, handles, &mut req)?;
1516                        let control_handle = ControllerControlHandle { inner: this.inner.clone() };
1517                        Ok(ControllerRequest::PollUdp {
1518                            target: req.target,
1519                            payload: req.payload,
1520                            timeout: req.timeout,
1521                            num_retries: req.num_retries,
1522
1523                            responder: ControllerPollUdpResponder {
1524                                control_handle: std::mem::ManuallyDrop::new(control_handle),
1525                                tx_id: header.tx_id,
1526                            },
1527                        })
1528                    }
1529                    0xbdbb4095640a3f4 => {
1530                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
1531                        let mut req = fidl::new_empty!(
1532                            ControllerJoinMulticastGroupRequest,
1533                            fidl::encoding::DefaultFuchsiaResourceDialect
1534                        );
1535                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<ControllerJoinMulticastGroupRequest>(&header, _body_bytes, handles, &mut req)?;
1536                        let control_handle = ControllerControlHandle { inner: this.inner.clone() };
1537                        Ok(ControllerRequest::JoinMulticastGroup {
1538                            address: req.address,
1539                            interface_id: req.interface_id,
1540
1541                            responder: ControllerJoinMulticastGroupResponder {
1542                                control_handle: std::mem::ManuallyDrop::new(control_handle),
1543                                tx_id: header.tx_id,
1544                            },
1545                        })
1546                    }
1547                    0x32ecf4e40124a29a => {
1548                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
1549                        let mut req = fidl::new_empty!(
1550                            ControllerLeaveMulticastGroupRequest,
1551                            fidl::encoding::DefaultFuchsiaResourceDialect
1552                        );
1553                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<ControllerLeaveMulticastGroupRequest>(&header, _body_bytes, handles, &mut req)?;
1554                        let control_handle = ControllerControlHandle { inner: this.inner.clone() };
1555                        Ok(ControllerRequest::LeaveMulticastGroup {
1556                            address: req.address,
1557                            interface_id: req.interface_id,
1558
1559                            responder: ControllerLeaveMulticastGroupResponder {
1560                                control_handle: std::mem::ManuallyDrop::new(control_handle),
1561                                tx_id: header.tx_id,
1562                            },
1563                        })
1564                    }
1565                    0x756c9b70864b7744 => {
1566                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
1567                        let mut req = fidl::new_empty!(
1568                            ControllerStartDhcpv6ClientRequest,
1569                            fidl::encoding::DefaultFuchsiaResourceDialect
1570                        );
1571                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<ControllerStartDhcpv6ClientRequest>(&header, _body_bytes, handles, &mut req)?;
1572                        let control_handle = ControllerControlHandle { inner: this.inner.clone() };
1573                        Ok(ControllerRequest::StartDhcpv6Client {
1574                            params: req.params,
1575
1576                            responder: ControllerStartDhcpv6ClientResponder {
1577                                control_handle: std::mem::ManuallyDrop::new(control_handle),
1578                                tx_id: header.tx_id,
1579                            },
1580                        })
1581                    }
1582                    0x16e93478e663d523 => {
1583                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
1584                        let mut req = fidl::new_empty!(
1585                            fidl::encoding::EmptyPayload,
1586                            fidl::encoding::DefaultFuchsiaResourceDialect
1587                        );
1588                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<fidl::encoding::EmptyPayload>(&header, _body_bytes, handles, &mut req)?;
1589                        let control_handle = ControllerControlHandle { inner: this.inner.clone() };
1590                        Ok(ControllerRequest::StopDhcpv6Client {
1591                            responder: ControllerStopDhcpv6ClientResponder {
1592                                control_handle: std::mem::ManuallyDrop::new(control_handle),
1593                                tx_id: header.tx_id,
1594                            },
1595                        })
1596                    }
1597                    0x37eeec41c0077625 => {
1598                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
1599                        let mut req = fidl::new_empty!(
1600                            ControllerStartOutOfStackDhcpv4ClientRequest,
1601                            fidl::encoding::DefaultFuchsiaResourceDialect
1602                        );
1603                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<ControllerStartOutOfStackDhcpv4ClientRequest>(&header, _body_bytes, handles, &mut req)?;
1604                        let control_handle = ControllerControlHandle { inner: this.inner.clone() };
1605                        Ok(ControllerRequest::StartOutOfStackDhcpv4Client {
1606                            payload: req,
1607                            responder: ControllerStartOutOfStackDhcpv4ClientResponder {
1608                                control_handle: std::mem::ManuallyDrop::new(control_handle),
1609                                tx_id: header.tx_id,
1610                            },
1611                        })
1612                    }
1613                    0x5d47aa5213164364 => {
1614                        header.validate_request_tx_id(fidl::MethodType::TwoWay)?;
1615                        let mut req = fidl::new_empty!(
1616                            ControllerStopOutOfStackDhcpv4ClientRequest,
1617                            fidl::encoding::DefaultFuchsiaResourceDialect
1618                        );
1619                        fidl::encoding::Decoder::<fidl::encoding::DefaultFuchsiaResourceDialect>::decode_into::<ControllerStopOutOfStackDhcpv4ClientRequest>(&header, _body_bytes, handles, &mut req)?;
1620                        let control_handle = ControllerControlHandle { inner: this.inner.clone() };
1621                        Ok(ControllerRequest::StopOutOfStackDhcpv4Client {
1622                            payload: req,
1623                            responder: ControllerStopOutOfStackDhcpv4ClientResponder {
1624                                control_handle: std::mem::ManuallyDrop::new(control_handle),
1625                                tx_id: header.tx_id,
1626                            },
1627                        })
1628                    }
1629                    _ => Err(fidl::Error::UnknownOrdinal {
1630                        ordinal: header.ordinal,
1631                        protocol_name:
1632                            <ControllerMarker as fidl::endpoints::ProtocolMarker>::DEBUG_NAME,
1633                    }),
1634                }))
1635            },
1636        )
1637    }
1638}
1639
1640/// A controller for creating and manipulating the Network Test Realm.
1641///
1642/// The Network Test Realm corresponds to a hermetic network realm with a
1643/// Netstack under test. The `Controller` protocol is responsible for:
1644///
1645///  * Configuring the Network Test Realm and its child components. This
1646///    includes the Netstack under test and the other relevant network
1647///    components (e.g. a DHCP server).
1648///  * Coordinating interactions with the system's Netstack. This includes
1649///    temporarily taking over and mutating system interfaces.
1650#[derive(Debug)]
1651pub enum ControllerRequest {
1652    /// Starts a hermetic network realm corresponding to `netstack`.
1653    ///
1654    /// Any previously running hermetic network realm will be terminated before
1655    /// the new realm is started. The configured realm will contain a subset of
1656    /// the components in the standard network realm. In particular, it will
1657    /// contain:
1658    ///
1659    ///  * A Netstack instance that corresponds to the provided `netstack`
1660    ///  * A DHCP server
1661    ///  * A DHCPv6 client
1662    ///  * A DNS resolver
1663    ///
1664    /// + request `netstack` the type of Netstack that will be run.
1665    /// * error `INTERNAL` for internal errors, including failure to start the
1666    ///     specified `netstack`.
1667    StartHermeticNetworkRealm {
1668        netstack: Netstack,
1669        responder: ControllerStartHermeticNetworkRealmResponder,
1670    },
1671    /// Stops any running hermetic network realm.
1672    ///
1673    /// All components in the hermetic network realm will be stopped. Similarly,
1674    /// any interfaces that were previously disabled on the system's Netstack
1675    /// will be re-enabled on a best-effort basis. That is, a failure to
1676    /// re-enable an interface will not result in this method returning an
1677    /// error.
1678    ///
1679    /// * error `HERMETIC_NETWORK_REALM_NOT_RUNNING` if a hermetic network realm
1680    ///     is not running.
1681    /// * error `INTERNAL` for internal errors, including failure to destroy the
1682    ///     realm.
1683    StopHermeticNetworkRealm { responder: ControllerStopHermeticNetworkRealmResponder },
1684    /// Attaches an interface to the hermetic Netstack.
1685    ///
1686    /// The interface that corresponds to `mac_address` will disabled on the
1687    /// system's Netstack, but enabled on the hermetic Netstack.
1688    ///
1689    /// + request `mac_address` address of the interface to be added to the
1690    ///     hermetic Netstack.
1691    /// + request `name` the name to assign to the new interface.
1692    /// + request `wait_any_ip_address` whether to wait for any IP address to be
1693    ///     assigned to the interface before returning. This is helpful for
1694    ///     tests that want to ensure the autoconfigured IP address is assigned
1695    ///     and has completed duplicate address detection before proceeding.
1696    /// * error `ALREADY_EXISTS` if an interface with `name` already exists on
1697    ///     the hermetic Netstack.
1698    /// * error `HERMETIC_NETWORK_REALM_NOT_RUNNING` if there is no running
1699    ///     hermetic network realm.
1700    /// * error `INTERFACE_NOT_FOUND` if an interface with `mac_address` could
1701    ///     not be found on the system.
1702    /// * error `INTERNAL` for internal errors, including failure to read the
1703    ///     system's interfaces or configure an interface.
1704    AddInterface {
1705        mac_address: fidl_fuchsia_net::MacAddress,
1706        name: String,
1707        wait_any_ip_address: bool,
1708        responder: ControllerAddInterfaceResponder,
1709    },
1710    /// Starts a test stub.
1711    ///
1712    /// Any previously running stub will be terminated before the provided
1713    /// stub corresponding to `component_url` is started.
1714    ///
1715    /// + request `component_url` the URL of the component to run.
1716    /// * error `COMPONENT_NOT_FOUND` if a component correspodning to
1717    ///     `component_url` could not be resolved.
1718    /// * error `HERMETIC_NETWORK_REALM_NOT_RUNNING` if there is no running
1719    ///     hermetic network realm.
1720    /// * error `INTERNAL` for internal errors, including failure to add the
1721    ///     desired stub within the hermetic network realm.
1722    /// * error `INVALID_ARGUMENTS` if the `component_url` is malformed.
1723    StartStub { component_url: String, responder: ControllerStartStubResponder },
1724    /// Stops the currently running stub.
1725    ///
1726    /// Other existing hermetic network realm components will continue to be run
1727    /// after this is invoked.
1728    ///
1729    /// * error `HERMETIC_NETWORK_REALM_NOT_RUNNING` if there is no running
1730    ///     hermetic network realm.
1731    /// * error `STUB_NOT_RUNNING` if there is no running stub.
1732    /// * error `INTERNAL` for internal errors, including failure to destroy the
1733    ///     stub component.
1734    StopStub { responder: ControllerStopStubResponder },
1735    /// Sends an ICMP echo request to the `target` using a socket provided by
1736    /// the hermetic Netstack.
1737    ///
1738    /// + request `target` the address to ping.
1739    /// + request `payload_length` the body size of the ICMP packet.
1740    ///     Specifically, the packet body will be filled with zeros of
1741    ///     `payload_length`.
1742    /// + request `interface_name` an optional interface to bind the socket to.
1743    /// + request `timeout` a timeout in nanoseconds to wait for a reply. If
1744    ///     less than or equal to 0, then returns success immediately after the
1745    ///     ping is sent.
1746    /// * error `HERMETIC_NETWORK_REALM_NOT_RUNNING` if there is no running
1747    ///     hermetic network realm.
1748    /// * error `INTERFACE_NOT_FOUND` if `interface_name` does not exist in the
1749    ///     hermetic Netstack.
1750    /// * error `INTERNAL` for internal errors, including failure to create a
1751    ///     socket or generate the ping request and response.
1752    /// * error `INVALID_ARGUMENTS` if `target` corresponds to a link-local
1753    ///     address and an `interface_name` is not specified or the
1754    ///     `payload_length` exceeds the maximum allowable size.
1755    /// * error `PING_FAILED` if there was an error sending or receiving the
1756    ///     ping.
1757    /// * error `TIMEOUT_EXCEEDED` if the ping reply is not received before the
1758    ///     specifed `timeout`.
1759    Ping {
1760        target: fidl_fuchsia_net::IpAddress,
1761        payload_length: u16,
1762        interface_name: Option<String>,
1763        timeout: i64,
1764        responder: ControllerPingResponder,
1765    },
1766    /// Polls the specified socket address with UDP datagrams containing the specified payload
1767    /// using a socket provided by the hermetic Netstack.
1768    ///
1769    /// Waits for a single reply from the target address and returns it.
1770    ///
1771    /// + request `target` the socket address to poll.
1772    /// + request `payload` the content to place in the UDP datagram.
1773    /// + request `timeout` a timeout in nanoseconds to wait for a reply, per retry.
1774    /// + request `num_retries` the number of poll attempts to make before giving up and returning
1775    ///     an error.
1776    /// * error `HERMETIC_NETWORK_REALM_NOT_RUNNING` if there is no running
1777    ///     hermetic network realm.
1778    /// * error `ADDRESS_UNREACHABLE` if all poll attempts expire without successfully receiving
1779    ///     a reply from the target address, and no route was found to the target address.
1780    /// * error `TIMEOUT_EXCEEDED` if the target address was routable, but all of the retry
1781    ///     attempts expire without successfully receiving a reply from the target address.
1782    /// * error `INTERNAL` for internal errors, including failure to create a socket or other
1783    ///     failures to send/receive datagrams from the target address.
1784    PollUdp {
1785        target: fidl_fuchsia_net::SocketAddress,
1786        payload: Vec<u8>,
1787        timeout: i64,
1788        num_retries: u16,
1789        responder: ControllerPollUdpResponder,
1790    },
1791    /// Joins a multicast group.
1792    ///
1793    /// Membership will be maintained until `LeaveMulticastGroup` or
1794    /// `StopHermeticNetworkRealm` is invoked.
1795    ///
1796    /// + request `address` the group address to join.
1797    /// + request `interface_id` the interface that should be used to join the
1798    ///     group. A value of 0 indicates that any interface may be used.
1799    /// * error `ADDRESS_IN_USE` if the provided `address` was previously
1800    ///     joined.
1801    /// * error `HERMETIC_NETWORK_REALM_NOT_RUNNING` if there is no running
1802    ///     hermetic network realm.
1803    /// * error `INTERNAL` for internal errors.
1804    /// * error `INVALID_ARGUMENTS` if the specified `interface_id` does not
1805    ///     exist or the `address` does not correspond to a valid multicast
1806    ///     address.
1807    JoinMulticastGroup {
1808        address: fidl_fuchsia_net::IpAddress,
1809        interface_id: u64,
1810        responder: ControllerJoinMulticastGroupResponder,
1811    },
1812    /// Leaves a multicast group that was previously joined using the
1813    /// `JoinMulticastGroup` method.
1814    ///
1815    /// + request `address` the group address to leave.
1816    /// + request `interface_id` the interface that was previously used to join
1817    ///     the multicast group.
1818    /// * error `ADDRESS_NOT_AVAILABLE` if the provided `address` was not
1819    ///     previously joined.
1820    /// * error `HERMETIC_NETWORK_REALM_NOT_RUNNING` if there is no running
1821    ///     hermetic network realm.
1822    /// * error `INTERNAL` for internal errors, including failure to connect
1823    ///     to hermetic network realm services.
1824    /// * error `INVALID_ARGUMENTS` if the specified `interface_id` does not
1825    ///     exist or the `address` does not correspond to a valid multicast
1826    ///     address.
1827    LeaveMulticastGroup {
1828        address: fidl_fuchsia_net::IpAddress,
1829        interface_id: u64,
1830        responder: ControllerLeaveMulticastGroupResponder,
1831    },
1832    /// Starts a DHCPv6 client with the provided parameters.
1833    ///
1834    /// + request `params` parameters to start this DHCPv6 client with.
1835    ///     Required.
1836    /// * error `HERMETIC_NETWORK_REALM_NOT_RUNNING` if there is no running
1837    ///     hermetic network realm.
1838    /// * error `INTERNAL` for internal errors, including failure to connect
1839    ///     to hermetic network realm services.
1840    /// * error `INVALID_ARGUMENTS` if any required parameters are omitted.
1841    /// * error `ALREADY_EXISTS` if there is a client running on the interface
1842    ///     identified by `params.interface_id` already.
1843    StartDhcpv6Client {
1844        params: fidl_fuchsia_net_dhcpv6::NewClientParams,
1845        responder: ControllerStartDhcpv6ClientResponder,
1846    },
1847    /// Stops all DHCPv6 clients.
1848    ///
1849    /// * error `DHCPV6_CLIENT_NOT_RUNNING` if no DHCPv6 client is running.
1850    StopDhcpv6Client { responder: ControllerStopDhcpv6ClientResponder },
1851    /// Starts a DHCPv4 client on the provided interface.
1852    ///
1853    /// + request `interface_id` the interface to start a DHCPv4 client on.
1854    ///     Required.
1855    StartOutOfStackDhcpv4Client {
1856        payload: ControllerStartOutOfStackDhcpv4ClientRequest,
1857        responder: ControllerStartOutOfStackDhcpv4ClientResponder,
1858    },
1859    /// Stops the DHCPv4 client on the provided interface.
1860    ///
1861    /// + request `interface_id` the interface to stop a DHCPv4 client client on.
1862    ///     Required.
1863    /// * error `DHCPV4_CLIENT_NOT_RUNNING` if no DHCPv4 client is running.
1864    /// * error `DHCPV4_CLIENT_SHUTDOWN_FAILED` if shutting down the DHCPv4 client
1865    ///   failed.
1866    StopOutOfStackDhcpv4Client {
1867        payload: ControllerStopOutOfStackDhcpv4ClientRequest,
1868        responder: ControllerStopOutOfStackDhcpv4ClientResponder,
1869    },
1870}
1871
1872impl ControllerRequest {
1873    #[allow(irrefutable_let_patterns)]
1874    pub fn into_start_hermetic_network_realm(
1875        self,
1876    ) -> Option<(Netstack, ControllerStartHermeticNetworkRealmResponder)> {
1877        if let ControllerRequest::StartHermeticNetworkRealm { netstack, responder } = self {
1878            Some((netstack, responder))
1879        } else {
1880            None
1881        }
1882    }
1883
1884    #[allow(irrefutable_let_patterns)]
1885    pub fn into_stop_hermetic_network_realm(
1886        self,
1887    ) -> Option<(ControllerStopHermeticNetworkRealmResponder)> {
1888        if let ControllerRequest::StopHermeticNetworkRealm { responder } = self {
1889            Some((responder))
1890        } else {
1891            None
1892        }
1893    }
1894
1895    #[allow(irrefutable_let_patterns)]
1896    pub fn into_add_interface(
1897        self,
1898    ) -> Option<(fidl_fuchsia_net::MacAddress, String, bool, ControllerAddInterfaceResponder)> {
1899        if let ControllerRequest::AddInterface {
1900            mac_address,
1901            name,
1902            wait_any_ip_address,
1903            responder,
1904        } = self
1905        {
1906            Some((mac_address, name, wait_any_ip_address, responder))
1907        } else {
1908            None
1909        }
1910    }
1911
1912    #[allow(irrefutable_let_patterns)]
1913    pub fn into_start_stub(self) -> Option<(String, ControllerStartStubResponder)> {
1914        if let ControllerRequest::StartStub { component_url, responder } = self {
1915            Some((component_url, responder))
1916        } else {
1917            None
1918        }
1919    }
1920
1921    #[allow(irrefutable_let_patterns)]
1922    pub fn into_stop_stub(self) -> Option<(ControllerStopStubResponder)> {
1923        if let ControllerRequest::StopStub { responder } = self {
1924            Some((responder))
1925        } else {
1926            None
1927        }
1928    }
1929
1930    #[allow(irrefutable_let_patterns)]
1931    pub fn into_ping(
1932        self,
1933    ) -> Option<(fidl_fuchsia_net::IpAddress, u16, Option<String>, i64, ControllerPingResponder)>
1934    {
1935        if let ControllerRequest::Ping {
1936            target,
1937            payload_length,
1938            interface_name,
1939            timeout,
1940            responder,
1941        } = self
1942        {
1943            Some((target, payload_length, interface_name, timeout, responder))
1944        } else {
1945            None
1946        }
1947    }
1948
1949    #[allow(irrefutable_let_patterns)]
1950    pub fn into_poll_udp(
1951        self,
1952    ) -> Option<(fidl_fuchsia_net::SocketAddress, Vec<u8>, i64, u16, ControllerPollUdpResponder)>
1953    {
1954        if let ControllerRequest::PollUdp { target, payload, timeout, num_retries, responder } =
1955            self
1956        {
1957            Some((target, payload, timeout, num_retries, responder))
1958        } else {
1959            None
1960        }
1961    }
1962
1963    #[allow(irrefutable_let_patterns)]
1964    pub fn into_join_multicast_group(
1965        self,
1966    ) -> Option<(fidl_fuchsia_net::IpAddress, u64, ControllerJoinMulticastGroupResponder)> {
1967        if let ControllerRequest::JoinMulticastGroup { address, interface_id, responder } = self {
1968            Some((address, interface_id, responder))
1969        } else {
1970            None
1971        }
1972    }
1973
1974    #[allow(irrefutable_let_patterns)]
1975    pub fn into_leave_multicast_group(
1976        self,
1977    ) -> Option<(fidl_fuchsia_net::IpAddress, u64, ControllerLeaveMulticastGroupResponder)> {
1978        if let ControllerRequest::LeaveMulticastGroup { address, interface_id, responder } = self {
1979            Some((address, interface_id, responder))
1980        } else {
1981            None
1982        }
1983    }
1984
1985    #[allow(irrefutable_let_patterns)]
1986    pub fn into_start_dhcpv6_client(
1987        self,
1988    ) -> Option<(fidl_fuchsia_net_dhcpv6::NewClientParams, ControllerStartDhcpv6ClientResponder)>
1989    {
1990        if let ControllerRequest::StartDhcpv6Client { params, responder } = self {
1991            Some((params, responder))
1992        } else {
1993            None
1994        }
1995    }
1996
1997    #[allow(irrefutable_let_patterns)]
1998    pub fn into_stop_dhcpv6_client(self) -> Option<(ControllerStopDhcpv6ClientResponder)> {
1999        if let ControllerRequest::StopDhcpv6Client { responder } = self {
2000            Some((responder))
2001        } else {
2002            None
2003        }
2004    }
2005
2006    #[allow(irrefutable_let_patterns)]
2007    pub fn into_start_out_of_stack_dhcpv4_client(
2008        self,
2009    ) -> Option<(
2010        ControllerStartOutOfStackDhcpv4ClientRequest,
2011        ControllerStartOutOfStackDhcpv4ClientResponder,
2012    )> {
2013        if let ControllerRequest::StartOutOfStackDhcpv4Client { payload, responder } = self {
2014            Some((payload, responder))
2015        } else {
2016            None
2017        }
2018    }
2019
2020    #[allow(irrefutable_let_patterns)]
2021    pub fn into_stop_out_of_stack_dhcpv4_client(
2022        self,
2023    ) -> Option<(
2024        ControllerStopOutOfStackDhcpv4ClientRequest,
2025        ControllerStopOutOfStackDhcpv4ClientResponder,
2026    )> {
2027        if let ControllerRequest::StopOutOfStackDhcpv4Client { payload, responder } = self {
2028            Some((payload, responder))
2029        } else {
2030            None
2031        }
2032    }
2033
2034    /// Name of the method defined in FIDL
2035    pub fn method_name(&self) -> &'static str {
2036        match *self {
2037            ControllerRequest::StartHermeticNetworkRealm { .. } => "start_hermetic_network_realm",
2038            ControllerRequest::StopHermeticNetworkRealm { .. } => "stop_hermetic_network_realm",
2039            ControllerRequest::AddInterface { .. } => "add_interface",
2040            ControllerRequest::StartStub { .. } => "start_stub",
2041            ControllerRequest::StopStub { .. } => "stop_stub",
2042            ControllerRequest::Ping { .. } => "ping",
2043            ControllerRequest::PollUdp { .. } => "poll_udp",
2044            ControllerRequest::JoinMulticastGroup { .. } => "join_multicast_group",
2045            ControllerRequest::LeaveMulticastGroup { .. } => "leave_multicast_group",
2046            ControllerRequest::StartDhcpv6Client { .. } => "start_dhcpv6_client",
2047            ControllerRequest::StopDhcpv6Client { .. } => "stop_dhcpv6_client",
2048            ControllerRequest::StartOutOfStackDhcpv4Client { .. } => {
2049                "start_out_of_stack_dhcpv4_client"
2050            }
2051            ControllerRequest::StopOutOfStackDhcpv4Client { .. } => {
2052                "stop_out_of_stack_dhcpv4_client"
2053            }
2054        }
2055    }
2056}
2057
2058#[derive(Debug, Clone)]
2059pub struct ControllerControlHandle {
2060    inner: std::sync::Arc<fidl::ServeInner<fidl::encoding::DefaultFuchsiaResourceDialect>>,
2061}
2062
2063impl fidl::endpoints::ControlHandle for ControllerControlHandle {
2064    fn shutdown(&self) {
2065        self.inner.shutdown()
2066    }
2067    fn shutdown_with_epitaph(&self, status: zx_status::Status) {
2068        self.inner.shutdown_with_epitaph(status)
2069    }
2070
2071    fn is_closed(&self) -> bool {
2072        self.inner.channel().is_closed()
2073    }
2074    fn on_closed(&self) -> fidl::OnSignalsRef<'_> {
2075        self.inner.channel().on_closed()
2076    }
2077
2078    #[cfg(target_os = "fuchsia")]
2079    fn signal_peer(
2080        &self,
2081        clear_mask: zx::Signals,
2082        set_mask: zx::Signals,
2083    ) -> Result<(), zx_status::Status> {
2084        use fidl::Peered;
2085        self.inner.channel().signal_peer(clear_mask, set_mask)
2086    }
2087}
2088
2089impl ControllerControlHandle {}
2090
2091#[must_use = "FIDL methods require a response to be sent"]
2092#[derive(Debug)]
2093pub struct ControllerStartHermeticNetworkRealmResponder {
2094    control_handle: std::mem::ManuallyDrop<ControllerControlHandle>,
2095    tx_id: u32,
2096}
2097
2098/// Set the the channel to be shutdown (see [`ControllerControlHandle::shutdown`])
2099/// if the responder is dropped without sending a response, so that the client
2100/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
2101impl std::ops::Drop for ControllerStartHermeticNetworkRealmResponder {
2102    fn drop(&mut self) {
2103        self.control_handle.shutdown();
2104        // Safety: drops once, never accessed again
2105        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2106    }
2107}
2108
2109impl fidl::endpoints::Responder for ControllerStartHermeticNetworkRealmResponder {
2110    type ControlHandle = ControllerControlHandle;
2111
2112    fn control_handle(&self) -> &ControllerControlHandle {
2113        &self.control_handle
2114    }
2115
2116    fn drop_without_shutdown(mut self) {
2117        // Safety: drops once, never accessed again due to mem::forget
2118        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2119        // Prevent Drop from running (which would shut down the channel)
2120        std::mem::forget(self);
2121    }
2122}
2123
2124impl ControllerStartHermeticNetworkRealmResponder {
2125    /// Sends a response to the FIDL transaction.
2126    ///
2127    /// Sets the channel to shutdown if an error occurs.
2128    pub fn send(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2129        let _result = self.send_raw(result);
2130        if _result.is_err() {
2131            self.control_handle.shutdown();
2132        }
2133        self.drop_without_shutdown();
2134        _result
2135    }
2136
2137    /// Similar to "send" but does not shutdown the channel if an error occurs.
2138    pub fn send_no_shutdown_on_err(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2139        let _result = self.send_raw(result);
2140        self.drop_without_shutdown();
2141        _result
2142    }
2143
2144    fn send_raw(&self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2145        self.control_handle
2146            .inner
2147            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>>(
2148                result,
2149                self.tx_id,
2150                0x58c1fa7335d4c5c2,
2151                fidl::encoding::DynamicFlags::empty(),
2152            )
2153    }
2154}
2155
2156#[must_use = "FIDL methods require a response to be sent"]
2157#[derive(Debug)]
2158pub struct ControllerStopHermeticNetworkRealmResponder {
2159    control_handle: std::mem::ManuallyDrop<ControllerControlHandle>,
2160    tx_id: u32,
2161}
2162
2163/// Set the the channel to be shutdown (see [`ControllerControlHandle::shutdown`])
2164/// if the responder is dropped without sending a response, so that the client
2165/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
2166impl std::ops::Drop for ControllerStopHermeticNetworkRealmResponder {
2167    fn drop(&mut self) {
2168        self.control_handle.shutdown();
2169        // Safety: drops once, never accessed again
2170        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2171    }
2172}
2173
2174impl fidl::endpoints::Responder for ControllerStopHermeticNetworkRealmResponder {
2175    type ControlHandle = ControllerControlHandle;
2176
2177    fn control_handle(&self) -> &ControllerControlHandle {
2178        &self.control_handle
2179    }
2180
2181    fn drop_without_shutdown(mut self) {
2182        // Safety: drops once, never accessed again due to mem::forget
2183        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2184        // Prevent Drop from running (which would shut down the channel)
2185        std::mem::forget(self);
2186    }
2187}
2188
2189impl ControllerStopHermeticNetworkRealmResponder {
2190    /// Sends a response to the FIDL transaction.
2191    ///
2192    /// Sets the channel to shutdown if an error occurs.
2193    pub fn send(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2194        let _result = self.send_raw(result);
2195        if _result.is_err() {
2196            self.control_handle.shutdown();
2197        }
2198        self.drop_without_shutdown();
2199        _result
2200    }
2201
2202    /// Similar to "send" but does not shutdown the channel if an error occurs.
2203    pub fn send_no_shutdown_on_err(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2204        let _result = self.send_raw(result);
2205        self.drop_without_shutdown();
2206        _result
2207    }
2208
2209    fn send_raw(&self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2210        self.control_handle
2211            .inner
2212            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>>(
2213                result,
2214                self.tx_id,
2215                0x49d3c2501cd2f635,
2216                fidl::encoding::DynamicFlags::empty(),
2217            )
2218    }
2219}
2220
2221#[must_use = "FIDL methods require a response to be sent"]
2222#[derive(Debug)]
2223pub struct ControllerAddInterfaceResponder {
2224    control_handle: std::mem::ManuallyDrop<ControllerControlHandle>,
2225    tx_id: u32,
2226}
2227
2228/// Set the the channel to be shutdown (see [`ControllerControlHandle::shutdown`])
2229/// if the responder is dropped without sending a response, so that the client
2230/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
2231impl std::ops::Drop for ControllerAddInterfaceResponder {
2232    fn drop(&mut self) {
2233        self.control_handle.shutdown();
2234        // Safety: drops once, never accessed again
2235        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2236    }
2237}
2238
2239impl fidl::endpoints::Responder for ControllerAddInterfaceResponder {
2240    type ControlHandle = ControllerControlHandle;
2241
2242    fn control_handle(&self) -> &ControllerControlHandle {
2243        &self.control_handle
2244    }
2245
2246    fn drop_without_shutdown(mut self) {
2247        // Safety: drops once, never accessed again due to mem::forget
2248        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2249        // Prevent Drop from running (which would shut down the channel)
2250        std::mem::forget(self);
2251    }
2252}
2253
2254impl ControllerAddInterfaceResponder {
2255    /// Sends a response to the FIDL transaction.
2256    ///
2257    /// Sets the channel to shutdown if an error occurs.
2258    pub fn send(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2259        let _result = self.send_raw(result);
2260        if _result.is_err() {
2261            self.control_handle.shutdown();
2262        }
2263        self.drop_without_shutdown();
2264        _result
2265    }
2266
2267    /// Similar to "send" but does not shutdown the channel if an error occurs.
2268    pub fn send_no_shutdown_on_err(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2269        let _result = self.send_raw(result);
2270        self.drop_without_shutdown();
2271        _result
2272    }
2273
2274    fn send_raw(&self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2275        self.control_handle
2276            .inner
2277            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>>(
2278                result,
2279                self.tx_id,
2280                0x668ded2d2b619c15,
2281                fidl::encoding::DynamicFlags::empty(),
2282            )
2283    }
2284}
2285
2286#[must_use = "FIDL methods require a response to be sent"]
2287#[derive(Debug)]
2288pub struct ControllerStartStubResponder {
2289    control_handle: std::mem::ManuallyDrop<ControllerControlHandle>,
2290    tx_id: u32,
2291}
2292
2293/// Set the the channel to be shutdown (see [`ControllerControlHandle::shutdown`])
2294/// if the responder is dropped without sending a response, so that the client
2295/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
2296impl std::ops::Drop for ControllerStartStubResponder {
2297    fn drop(&mut self) {
2298        self.control_handle.shutdown();
2299        // Safety: drops once, never accessed again
2300        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2301    }
2302}
2303
2304impl fidl::endpoints::Responder for ControllerStartStubResponder {
2305    type ControlHandle = ControllerControlHandle;
2306
2307    fn control_handle(&self) -> &ControllerControlHandle {
2308        &self.control_handle
2309    }
2310
2311    fn drop_without_shutdown(mut self) {
2312        // Safety: drops once, never accessed again due to mem::forget
2313        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2314        // Prevent Drop from running (which would shut down the channel)
2315        std::mem::forget(self);
2316    }
2317}
2318
2319impl ControllerStartStubResponder {
2320    /// Sends a response to the FIDL transaction.
2321    ///
2322    /// Sets the channel to shutdown if an error occurs.
2323    pub fn send(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2324        let _result = self.send_raw(result);
2325        if _result.is_err() {
2326            self.control_handle.shutdown();
2327        }
2328        self.drop_without_shutdown();
2329        _result
2330    }
2331
2332    /// Similar to "send" but does not shutdown the channel if an error occurs.
2333    pub fn send_no_shutdown_on_err(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2334        let _result = self.send_raw(result);
2335        self.drop_without_shutdown();
2336        _result
2337    }
2338
2339    fn send_raw(&self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2340        self.control_handle
2341            .inner
2342            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>>(
2343                result,
2344                self.tx_id,
2345                0x6523a401f22bf664,
2346                fidl::encoding::DynamicFlags::empty(),
2347            )
2348    }
2349}
2350
2351#[must_use = "FIDL methods require a response to be sent"]
2352#[derive(Debug)]
2353pub struct ControllerStopStubResponder {
2354    control_handle: std::mem::ManuallyDrop<ControllerControlHandle>,
2355    tx_id: u32,
2356}
2357
2358/// Set the the channel to be shutdown (see [`ControllerControlHandle::shutdown`])
2359/// if the responder is dropped without sending a response, so that the client
2360/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
2361impl std::ops::Drop for ControllerStopStubResponder {
2362    fn drop(&mut self) {
2363        self.control_handle.shutdown();
2364        // Safety: drops once, never accessed again
2365        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2366    }
2367}
2368
2369impl fidl::endpoints::Responder for ControllerStopStubResponder {
2370    type ControlHandle = ControllerControlHandle;
2371
2372    fn control_handle(&self) -> &ControllerControlHandle {
2373        &self.control_handle
2374    }
2375
2376    fn drop_without_shutdown(mut self) {
2377        // Safety: drops once, never accessed again due to mem::forget
2378        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2379        // Prevent Drop from running (which would shut down the channel)
2380        std::mem::forget(self);
2381    }
2382}
2383
2384impl ControllerStopStubResponder {
2385    /// Sends a response to the FIDL transaction.
2386    ///
2387    /// Sets the channel to shutdown if an error occurs.
2388    pub fn send(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2389        let _result = self.send_raw(result);
2390        if _result.is_err() {
2391            self.control_handle.shutdown();
2392        }
2393        self.drop_without_shutdown();
2394        _result
2395    }
2396
2397    /// Similar to "send" but does not shutdown the channel if an error occurs.
2398    pub fn send_no_shutdown_on_err(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2399        let _result = self.send_raw(result);
2400        self.drop_without_shutdown();
2401        _result
2402    }
2403
2404    fn send_raw(&self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2405        self.control_handle
2406            .inner
2407            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>>(
2408                result,
2409                self.tx_id,
2410                0x582c32b564ff4bb4,
2411                fidl::encoding::DynamicFlags::empty(),
2412            )
2413    }
2414}
2415
2416#[must_use = "FIDL methods require a response to be sent"]
2417#[derive(Debug)]
2418pub struct ControllerPingResponder {
2419    control_handle: std::mem::ManuallyDrop<ControllerControlHandle>,
2420    tx_id: u32,
2421}
2422
2423/// Set the the channel to be shutdown (see [`ControllerControlHandle::shutdown`])
2424/// if the responder is dropped without sending a response, so that the client
2425/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
2426impl std::ops::Drop for ControllerPingResponder {
2427    fn drop(&mut self) {
2428        self.control_handle.shutdown();
2429        // Safety: drops once, never accessed again
2430        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2431    }
2432}
2433
2434impl fidl::endpoints::Responder for ControllerPingResponder {
2435    type ControlHandle = ControllerControlHandle;
2436
2437    fn control_handle(&self) -> &ControllerControlHandle {
2438        &self.control_handle
2439    }
2440
2441    fn drop_without_shutdown(mut self) {
2442        // Safety: drops once, never accessed again due to mem::forget
2443        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2444        // Prevent Drop from running (which would shut down the channel)
2445        std::mem::forget(self);
2446    }
2447}
2448
2449impl ControllerPingResponder {
2450    /// Sends a response to the FIDL transaction.
2451    ///
2452    /// Sets the channel to shutdown if an error occurs.
2453    pub fn send(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2454        let _result = self.send_raw(result);
2455        if _result.is_err() {
2456            self.control_handle.shutdown();
2457        }
2458        self.drop_without_shutdown();
2459        _result
2460    }
2461
2462    /// Similar to "send" but does not shutdown the channel if an error occurs.
2463    pub fn send_no_shutdown_on_err(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2464        let _result = self.send_raw(result);
2465        self.drop_without_shutdown();
2466        _result
2467    }
2468
2469    fn send_raw(&self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2470        self.control_handle
2471            .inner
2472            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>>(
2473                result,
2474                self.tx_id,
2475                0x60c9b6cf952fa4d1,
2476                fidl::encoding::DynamicFlags::empty(),
2477            )
2478    }
2479}
2480
2481#[must_use = "FIDL methods require a response to be sent"]
2482#[derive(Debug)]
2483pub struct ControllerPollUdpResponder {
2484    control_handle: std::mem::ManuallyDrop<ControllerControlHandle>,
2485    tx_id: u32,
2486}
2487
2488/// Set the the channel to be shutdown (see [`ControllerControlHandle::shutdown`])
2489/// if the responder is dropped without sending a response, so that the client
2490/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
2491impl std::ops::Drop for ControllerPollUdpResponder {
2492    fn drop(&mut self) {
2493        self.control_handle.shutdown();
2494        // Safety: drops once, never accessed again
2495        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2496    }
2497}
2498
2499impl fidl::endpoints::Responder for ControllerPollUdpResponder {
2500    type ControlHandle = ControllerControlHandle;
2501
2502    fn control_handle(&self) -> &ControllerControlHandle {
2503        &self.control_handle
2504    }
2505
2506    fn drop_without_shutdown(mut self) {
2507        // Safety: drops once, never accessed again due to mem::forget
2508        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2509        // Prevent Drop from running (which would shut down the channel)
2510        std::mem::forget(self);
2511    }
2512}
2513
2514impl ControllerPollUdpResponder {
2515    /// Sends a response to the FIDL transaction.
2516    ///
2517    /// Sets the channel to shutdown if an error occurs.
2518    pub fn send(self, mut result: Result<&[u8], Error>) -> Result<(), fidl::Error> {
2519        let _result = self.send_raw(result);
2520        if _result.is_err() {
2521            self.control_handle.shutdown();
2522        }
2523        self.drop_without_shutdown();
2524        _result
2525    }
2526
2527    /// Similar to "send" but does not shutdown the channel if an error occurs.
2528    pub fn send_no_shutdown_on_err(
2529        self,
2530        mut result: Result<&[u8], Error>,
2531    ) -> Result<(), fidl::Error> {
2532        let _result = self.send_raw(result);
2533        self.drop_without_shutdown();
2534        _result
2535    }
2536
2537    fn send_raw(&self, mut result: Result<&[u8], Error>) -> Result<(), fidl::Error> {
2538        self.control_handle
2539            .inner
2540            .send::<fidl::encoding::ResultType<ControllerPollUdpResponse, Error>>(
2541                result.map(|payload| (payload,)),
2542                self.tx_id,
2543                0x333fb354db30f664,
2544                fidl::encoding::DynamicFlags::empty(),
2545            )
2546    }
2547}
2548
2549#[must_use = "FIDL methods require a response to be sent"]
2550#[derive(Debug)]
2551pub struct ControllerJoinMulticastGroupResponder {
2552    control_handle: std::mem::ManuallyDrop<ControllerControlHandle>,
2553    tx_id: u32,
2554}
2555
2556/// Set the the channel to be shutdown (see [`ControllerControlHandle::shutdown`])
2557/// if the responder is dropped without sending a response, so that the client
2558/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
2559impl std::ops::Drop for ControllerJoinMulticastGroupResponder {
2560    fn drop(&mut self) {
2561        self.control_handle.shutdown();
2562        // Safety: drops once, never accessed again
2563        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2564    }
2565}
2566
2567impl fidl::endpoints::Responder for ControllerJoinMulticastGroupResponder {
2568    type ControlHandle = ControllerControlHandle;
2569
2570    fn control_handle(&self) -> &ControllerControlHandle {
2571        &self.control_handle
2572    }
2573
2574    fn drop_without_shutdown(mut self) {
2575        // Safety: drops once, never accessed again due to mem::forget
2576        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2577        // Prevent Drop from running (which would shut down the channel)
2578        std::mem::forget(self);
2579    }
2580}
2581
2582impl ControllerJoinMulticastGroupResponder {
2583    /// Sends a response to the FIDL transaction.
2584    ///
2585    /// Sets the channel to shutdown if an error occurs.
2586    pub fn send(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2587        let _result = self.send_raw(result);
2588        if _result.is_err() {
2589            self.control_handle.shutdown();
2590        }
2591        self.drop_without_shutdown();
2592        _result
2593    }
2594
2595    /// Similar to "send" but does not shutdown the channel if an error occurs.
2596    pub fn send_no_shutdown_on_err(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2597        let _result = self.send_raw(result);
2598        self.drop_without_shutdown();
2599        _result
2600    }
2601
2602    fn send_raw(&self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2603        self.control_handle
2604            .inner
2605            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>>(
2606                result,
2607                self.tx_id,
2608                0xbdbb4095640a3f4,
2609                fidl::encoding::DynamicFlags::empty(),
2610            )
2611    }
2612}
2613
2614#[must_use = "FIDL methods require a response to be sent"]
2615#[derive(Debug)]
2616pub struct ControllerLeaveMulticastGroupResponder {
2617    control_handle: std::mem::ManuallyDrop<ControllerControlHandle>,
2618    tx_id: u32,
2619}
2620
2621/// Set the the channel to be shutdown (see [`ControllerControlHandle::shutdown`])
2622/// if the responder is dropped without sending a response, so that the client
2623/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
2624impl std::ops::Drop for ControllerLeaveMulticastGroupResponder {
2625    fn drop(&mut self) {
2626        self.control_handle.shutdown();
2627        // Safety: drops once, never accessed again
2628        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2629    }
2630}
2631
2632impl fidl::endpoints::Responder for ControllerLeaveMulticastGroupResponder {
2633    type ControlHandle = ControllerControlHandle;
2634
2635    fn control_handle(&self) -> &ControllerControlHandle {
2636        &self.control_handle
2637    }
2638
2639    fn drop_without_shutdown(mut self) {
2640        // Safety: drops once, never accessed again due to mem::forget
2641        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2642        // Prevent Drop from running (which would shut down the channel)
2643        std::mem::forget(self);
2644    }
2645}
2646
2647impl ControllerLeaveMulticastGroupResponder {
2648    /// Sends a response to the FIDL transaction.
2649    ///
2650    /// Sets the channel to shutdown if an error occurs.
2651    pub fn send(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2652        let _result = self.send_raw(result);
2653        if _result.is_err() {
2654            self.control_handle.shutdown();
2655        }
2656        self.drop_without_shutdown();
2657        _result
2658    }
2659
2660    /// Similar to "send" but does not shutdown the channel if an error occurs.
2661    pub fn send_no_shutdown_on_err(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2662        let _result = self.send_raw(result);
2663        self.drop_without_shutdown();
2664        _result
2665    }
2666
2667    fn send_raw(&self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2668        self.control_handle
2669            .inner
2670            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>>(
2671                result,
2672                self.tx_id,
2673                0x32ecf4e40124a29a,
2674                fidl::encoding::DynamicFlags::empty(),
2675            )
2676    }
2677}
2678
2679#[must_use = "FIDL methods require a response to be sent"]
2680#[derive(Debug)]
2681pub struct ControllerStartDhcpv6ClientResponder {
2682    control_handle: std::mem::ManuallyDrop<ControllerControlHandle>,
2683    tx_id: u32,
2684}
2685
2686/// Set the the channel to be shutdown (see [`ControllerControlHandle::shutdown`])
2687/// if the responder is dropped without sending a response, so that the client
2688/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
2689impl std::ops::Drop for ControllerStartDhcpv6ClientResponder {
2690    fn drop(&mut self) {
2691        self.control_handle.shutdown();
2692        // Safety: drops once, never accessed again
2693        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2694    }
2695}
2696
2697impl fidl::endpoints::Responder for ControllerStartDhcpv6ClientResponder {
2698    type ControlHandle = ControllerControlHandle;
2699
2700    fn control_handle(&self) -> &ControllerControlHandle {
2701        &self.control_handle
2702    }
2703
2704    fn drop_without_shutdown(mut self) {
2705        // Safety: drops once, never accessed again due to mem::forget
2706        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2707        // Prevent Drop from running (which would shut down the channel)
2708        std::mem::forget(self);
2709    }
2710}
2711
2712impl ControllerStartDhcpv6ClientResponder {
2713    /// Sends a response to the FIDL transaction.
2714    ///
2715    /// Sets the channel to shutdown if an error occurs.
2716    pub fn send(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2717        let _result = self.send_raw(result);
2718        if _result.is_err() {
2719            self.control_handle.shutdown();
2720        }
2721        self.drop_without_shutdown();
2722        _result
2723    }
2724
2725    /// Similar to "send" but does not shutdown the channel if an error occurs.
2726    pub fn send_no_shutdown_on_err(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2727        let _result = self.send_raw(result);
2728        self.drop_without_shutdown();
2729        _result
2730    }
2731
2732    fn send_raw(&self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2733        self.control_handle
2734            .inner
2735            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>>(
2736                result,
2737                self.tx_id,
2738                0x756c9b70864b7744,
2739                fidl::encoding::DynamicFlags::empty(),
2740            )
2741    }
2742}
2743
2744#[must_use = "FIDL methods require a response to be sent"]
2745#[derive(Debug)]
2746pub struct ControllerStopDhcpv6ClientResponder {
2747    control_handle: std::mem::ManuallyDrop<ControllerControlHandle>,
2748    tx_id: u32,
2749}
2750
2751/// Set the the channel to be shutdown (see [`ControllerControlHandle::shutdown`])
2752/// if the responder is dropped without sending a response, so that the client
2753/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
2754impl std::ops::Drop for ControllerStopDhcpv6ClientResponder {
2755    fn drop(&mut self) {
2756        self.control_handle.shutdown();
2757        // Safety: drops once, never accessed again
2758        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2759    }
2760}
2761
2762impl fidl::endpoints::Responder for ControllerStopDhcpv6ClientResponder {
2763    type ControlHandle = ControllerControlHandle;
2764
2765    fn control_handle(&self) -> &ControllerControlHandle {
2766        &self.control_handle
2767    }
2768
2769    fn drop_without_shutdown(mut self) {
2770        // Safety: drops once, never accessed again due to mem::forget
2771        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2772        // Prevent Drop from running (which would shut down the channel)
2773        std::mem::forget(self);
2774    }
2775}
2776
2777impl ControllerStopDhcpv6ClientResponder {
2778    /// Sends a response to the FIDL transaction.
2779    ///
2780    /// Sets the channel to shutdown if an error occurs.
2781    pub fn send(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2782        let _result = self.send_raw(result);
2783        if _result.is_err() {
2784            self.control_handle.shutdown();
2785        }
2786        self.drop_without_shutdown();
2787        _result
2788    }
2789
2790    /// Similar to "send" but does not shutdown the channel if an error occurs.
2791    pub fn send_no_shutdown_on_err(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2792        let _result = self.send_raw(result);
2793        self.drop_without_shutdown();
2794        _result
2795    }
2796
2797    fn send_raw(&self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2798        self.control_handle
2799            .inner
2800            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>>(
2801                result,
2802                self.tx_id,
2803                0x16e93478e663d523,
2804                fidl::encoding::DynamicFlags::empty(),
2805            )
2806    }
2807}
2808
2809#[must_use = "FIDL methods require a response to be sent"]
2810#[derive(Debug)]
2811pub struct ControllerStartOutOfStackDhcpv4ClientResponder {
2812    control_handle: std::mem::ManuallyDrop<ControllerControlHandle>,
2813    tx_id: u32,
2814}
2815
2816/// Set the the channel to be shutdown (see [`ControllerControlHandle::shutdown`])
2817/// if the responder is dropped without sending a response, so that the client
2818/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
2819impl std::ops::Drop for ControllerStartOutOfStackDhcpv4ClientResponder {
2820    fn drop(&mut self) {
2821        self.control_handle.shutdown();
2822        // Safety: drops once, never accessed again
2823        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2824    }
2825}
2826
2827impl fidl::endpoints::Responder for ControllerStartOutOfStackDhcpv4ClientResponder {
2828    type ControlHandle = ControllerControlHandle;
2829
2830    fn control_handle(&self) -> &ControllerControlHandle {
2831        &self.control_handle
2832    }
2833
2834    fn drop_without_shutdown(mut self) {
2835        // Safety: drops once, never accessed again due to mem::forget
2836        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2837        // Prevent Drop from running (which would shut down the channel)
2838        std::mem::forget(self);
2839    }
2840}
2841
2842impl ControllerStartOutOfStackDhcpv4ClientResponder {
2843    /// Sends a response to the FIDL transaction.
2844    ///
2845    /// Sets the channel to shutdown if an error occurs.
2846    pub fn send(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2847        let _result = self.send_raw(result);
2848        if _result.is_err() {
2849            self.control_handle.shutdown();
2850        }
2851        self.drop_without_shutdown();
2852        _result
2853    }
2854
2855    /// Similar to "send" but does not shutdown the channel if an error occurs.
2856    pub fn send_no_shutdown_on_err(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2857        let _result = self.send_raw(result);
2858        self.drop_without_shutdown();
2859        _result
2860    }
2861
2862    fn send_raw(&self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2863        self.control_handle
2864            .inner
2865            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>>(
2866                result,
2867                self.tx_id,
2868                0x37eeec41c0077625,
2869                fidl::encoding::DynamicFlags::empty(),
2870            )
2871    }
2872}
2873
2874#[must_use = "FIDL methods require a response to be sent"]
2875#[derive(Debug)]
2876pub struct ControllerStopOutOfStackDhcpv4ClientResponder {
2877    control_handle: std::mem::ManuallyDrop<ControllerControlHandle>,
2878    tx_id: u32,
2879}
2880
2881/// Set the the channel to be shutdown (see [`ControllerControlHandle::shutdown`])
2882/// if the responder is dropped without sending a response, so that the client
2883/// doesn't hang. To prevent this behavior, call `drop_without_shutdown`.
2884impl std::ops::Drop for ControllerStopOutOfStackDhcpv4ClientResponder {
2885    fn drop(&mut self) {
2886        self.control_handle.shutdown();
2887        // Safety: drops once, never accessed again
2888        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2889    }
2890}
2891
2892impl fidl::endpoints::Responder for ControllerStopOutOfStackDhcpv4ClientResponder {
2893    type ControlHandle = ControllerControlHandle;
2894
2895    fn control_handle(&self) -> &ControllerControlHandle {
2896        &self.control_handle
2897    }
2898
2899    fn drop_without_shutdown(mut self) {
2900        // Safety: drops once, never accessed again due to mem::forget
2901        unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2902        // Prevent Drop from running (which would shut down the channel)
2903        std::mem::forget(self);
2904    }
2905}
2906
2907impl ControllerStopOutOfStackDhcpv4ClientResponder {
2908    /// Sends a response to the FIDL transaction.
2909    ///
2910    /// Sets the channel to shutdown if an error occurs.
2911    pub fn send(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2912        let _result = self.send_raw(result);
2913        if _result.is_err() {
2914            self.control_handle.shutdown();
2915        }
2916        self.drop_without_shutdown();
2917        _result
2918    }
2919
2920    /// Similar to "send" but does not shutdown the channel if an error occurs.
2921    pub fn send_no_shutdown_on_err(self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2922        let _result = self.send_raw(result);
2923        self.drop_without_shutdown();
2924        _result
2925    }
2926
2927    fn send_raw(&self, mut result: Result<(), Error>) -> Result<(), fidl::Error> {
2928        self.control_handle
2929            .inner
2930            .send::<fidl::encoding::ResultType<fidl::encoding::EmptyStruct, Error>>(
2931                result,
2932                self.tx_id,
2933                0x5d47aa5213164364,
2934                fidl::encoding::DynamicFlags::empty(),
2935            )
2936    }
2937}
2938
2939mod internal {
2940    use super::*;
2941}