1#![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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 pub fn take_event_stream(&self) -> ControllerEventStream {
609 ControllerEventStream { event_receiver: self.client.take_event_receiver() }
610 }
611
612 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 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 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 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 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 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 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 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 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 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 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 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 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 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
1330pub 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 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#[derive(Debug)]
1651pub enum ControllerRequest {
1652 StartHermeticNetworkRealm {
1668 netstack: Netstack,
1669 responder: ControllerStartHermeticNetworkRealmResponder,
1670 },
1671 StopHermeticNetworkRealm { responder: ControllerStopHermeticNetworkRealmResponder },
1684 AddInterface {
1705 mac_address: fidl_fuchsia_net::MacAddress,
1706 name: String,
1707 wait_any_ip_address: bool,
1708 responder: ControllerAddInterfaceResponder,
1709 },
1710 StartStub { component_url: String, responder: ControllerStartStubResponder },
1724 StopStub { responder: ControllerStopStubResponder },
1735 Ping {
1760 target: fidl_fuchsia_net::IpAddress,
1761 payload_length: u16,
1762 interface_name: Option<String>,
1763 timeout: i64,
1764 responder: ControllerPingResponder,
1765 },
1766 PollUdp {
1785 target: fidl_fuchsia_net::SocketAddress,
1786 payload: Vec<u8>,
1787 timeout: i64,
1788 num_retries: u16,
1789 responder: ControllerPollUdpResponder,
1790 },
1791 JoinMulticastGroup {
1808 address: fidl_fuchsia_net::IpAddress,
1809 interface_id: u64,
1810 responder: ControllerJoinMulticastGroupResponder,
1811 },
1812 LeaveMulticastGroup {
1828 address: fidl_fuchsia_net::IpAddress,
1829 interface_id: u64,
1830 responder: ControllerLeaveMulticastGroupResponder,
1831 },
1832 StartDhcpv6Client {
1844 params: fidl_fuchsia_net_dhcpv6::NewClientParams,
1845 responder: ControllerStartDhcpv6ClientResponder,
1846 },
1847 StopDhcpv6Client { responder: ControllerStopDhcpv6ClientResponder },
1851 StartOutOfStackDhcpv4Client {
1856 payload: ControllerStartOutOfStackDhcpv4ClientRequest,
1857 responder: ControllerStartOutOfStackDhcpv4ClientResponder,
1858 },
1859 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 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
2098impl std::ops::Drop for ControllerStartHermeticNetworkRealmResponder {
2102 fn drop(&mut self) {
2103 self.control_handle.shutdown();
2104 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2119 std::mem::forget(self);
2121 }
2122}
2123
2124impl ControllerStartHermeticNetworkRealmResponder {
2125 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 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
2163impl std::ops::Drop for ControllerStopHermeticNetworkRealmResponder {
2167 fn drop(&mut self) {
2168 self.control_handle.shutdown();
2169 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2184 std::mem::forget(self);
2186 }
2187}
2188
2189impl ControllerStopHermeticNetworkRealmResponder {
2190 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 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
2228impl std::ops::Drop for ControllerAddInterfaceResponder {
2232 fn drop(&mut self) {
2233 self.control_handle.shutdown();
2234 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2249 std::mem::forget(self);
2251 }
2252}
2253
2254impl ControllerAddInterfaceResponder {
2255 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 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
2293impl std::ops::Drop for ControllerStartStubResponder {
2297 fn drop(&mut self) {
2298 self.control_handle.shutdown();
2299 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2314 std::mem::forget(self);
2316 }
2317}
2318
2319impl ControllerStartStubResponder {
2320 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 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
2358impl std::ops::Drop for ControllerStopStubResponder {
2362 fn drop(&mut self) {
2363 self.control_handle.shutdown();
2364 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2379 std::mem::forget(self);
2381 }
2382}
2383
2384impl ControllerStopStubResponder {
2385 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 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
2423impl std::ops::Drop for ControllerPingResponder {
2427 fn drop(&mut self) {
2428 self.control_handle.shutdown();
2429 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2444 std::mem::forget(self);
2446 }
2447}
2448
2449impl ControllerPingResponder {
2450 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 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
2488impl std::ops::Drop for ControllerPollUdpResponder {
2492 fn drop(&mut self) {
2493 self.control_handle.shutdown();
2494 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2509 std::mem::forget(self);
2511 }
2512}
2513
2514impl ControllerPollUdpResponder {
2515 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 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
2556impl std::ops::Drop for ControllerJoinMulticastGroupResponder {
2560 fn drop(&mut self) {
2561 self.control_handle.shutdown();
2562 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2577 std::mem::forget(self);
2579 }
2580}
2581
2582impl ControllerJoinMulticastGroupResponder {
2583 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 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
2621impl std::ops::Drop for ControllerLeaveMulticastGroupResponder {
2625 fn drop(&mut self) {
2626 self.control_handle.shutdown();
2627 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2642 std::mem::forget(self);
2644 }
2645}
2646
2647impl ControllerLeaveMulticastGroupResponder {
2648 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 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
2686impl std::ops::Drop for ControllerStartDhcpv6ClientResponder {
2690 fn drop(&mut self) {
2691 self.control_handle.shutdown();
2692 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2707 std::mem::forget(self);
2709 }
2710}
2711
2712impl ControllerStartDhcpv6ClientResponder {
2713 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 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
2751impl std::ops::Drop for ControllerStopDhcpv6ClientResponder {
2755 fn drop(&mut self) {
2756 self.control_handle.shutdown();
2757 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2772 std::mem::forget(self);
2774 }
2775}
2776
2777impl ControllerStopDhcpv6ClientResponder {
2778 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 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
2816impl std::ops::Drop for ControllerStartOutOfStackDhcpv4ClientResponder {
2820 fn drop(&mut self) {
2821 self.control_handle.shutdown();
2822 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2837 std::mem::forget(self);
2839 }
2840}
2841
2842impl ControllerStartOutOfStackDhcpv4ClientResponder {
2843 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 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
2881impl std::ops::Drop for ControllerStopOutOfStackDhcpv4ClientResponder {
2885 fn drop(&mut self) {
2886 self.control_handle.shutdown();
2887 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 unsafe { std::mem::ManuallyDrop::drop(&mut self.control_handle) };
2902 std::mem::forget(self);
2904 }
2905}
2906
2907impl ControllerStopOutOfStackDhcpv4ClientResponder {
2908 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 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}