Skip to content

Commit 954aad8

Browse files
committed
One RouteManagerCommand per OS
1 parent 004ea84 commit 954aad8

File tree

1 file changed

+30
-14
lines changed

1 file changed

+30
-14
lines changed

talpid-routing/src/unix/mod.rs

+30-14
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ impl Error {
7272
type Fwmark = u32;
7373

7474
/// Commands for the underlying route manager object.
75+
#[cfg(target_os = "linux")]
7576
#[derive(Debug)]
7677
pub(crate) enum RouteManagerCommand {
7778
AddRoutes(
@@ -80,32 +81,47 @@ pub(crate) enum RouteManagerCommand {
8081
),
8182
ClearRoutes,
8283
Shutdown(oneshot::Sender<()>),
83-
#[cfg(target_os = "macos")]
84-
RefreshRoutes,
85-
#[cfg(target_os = "macos")]
86-
NewDefaultRouteListener(oneshot::Sender<mpsc::UnboundedReceiver<DefaultRouteEvent>>),
87-
#[cfg(target_os = "macos")]
88-
GetDefaultRoutes(oneshot::Sender<(Option<DefaultRoute>, Option<DefaultRoute>)>),
89-
/// Return gateway for V4 and V6
90-
#[cfg(target_os = "macos")]
91-
GetDefaultGateway(oneshot::Sender<(Option<Gateway>, Option<Gateway>)>),
92-
#[cfg(target_os = "linux")]
9384
CreateRoutingRules(bool, oneshot::Sender<Result<(), PlatformError>>),
94-
#[cfg(target_os = "linux")]
9585
ClearRoutingRules(oneshot::Sender<Result<(), PlatformError>>),
96-
#[cfg(target_os = "linux")]
9786
NewChangeListener(oneshot::Sender<mpsc::UnboundedReceiver<CallbackMessage>>),
98-
#[cfg(target_os = "linux")]
9987
GetMtuForRoute(IpAddr, oneshot::Sender<Result<u16, PlatformError>>),
10088
/// Attempt to fetch a route for the given destination with an optional firewall mark.
101-
#[cfg(target_os = "linux")]
10289
GetDestinationRoute(
10390
IpAddr,
10491
Option<Fwmark>,
10592
oneshot::Sender<Result<Option<Route>, PlatformError>>,
10693
),
10794
}
10895

96+
/// Commands for the underlying route manager object.
97+
#[cfg(target_os = "android")]
98+
#[derive(Debug)]
99+
pub(crate) enum RouteManagerCommand {
100+
AddRoutes(
101+
HashSet<RequiredRoute>,
102+
oneshot::Sender<Result<(), PlatformError>>,
103+
),
104+
ClearRoutes,
105+
Shutdown(oneshot::Sender<()>),
106+
}
107+
108+
/// Commands for the underlying route manager object.
109+
#[cfg(target_os = "macos")]
110+
#[derive(Debug)]
111+
pub(crate) enum RouteManagerCommand {
112+
AddRoutes(
113+
HashSet<RequiredRoute>,
114+
oneshot::Sender<Result<(), PlatformError>>,
115+
),
116+
ClearRoutes,
117+
Shutdown(oneshot::Sender<()>),
118+
RefreshRoutes,
119+
NewDefaultRouteListener(oneshot::Sender<mpsc::UnboundedReceiver<DefaultRouteEvent>>),
120+
GetDefaultRoutes(oneshot::Sender<(Option<DefaultRoute>, Option<DefaultRoute>)>),
121+
/// Return gateway for V4 and V6
122+
GetDefaultGateway(oneshot::Sender<(Option<Gateway>, Option<Gateway>)>),
123+
}
124+
109125
/// Event that is sent when a preferred non-tunnel default route is
110126
/// added or removed.
111127
#[cfg(target_os = "macos")]

0 commit comments

Comments
 (0)