@@ -72,6 +72,7 @@ impl Error {
72
72
type Fwmark = u32 ;
73
73
74
74
/// Commands for the underlying route manager object.
75
+ #[ cfg( target_os = "linux" ) ]
75
76
#[ derive( Debug ) ]
76
77
pub ( crate ) enum RouteManagerCommand {
77
78
AddRoutes (
@@ -80,32 +81,47 @@ pub(crate) enum RouteManagerCommand {
80
81
) ,
81
82
ClearRoutes ,
82
83
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" ) ]
93
84
CreateRoutingRules ( bool , oneshot:: Sender < Result < ( ) , PlatformError > > ) ,
94
- #[ cfg( target_os = "linux" ) ]
95
85
ClearRoutingRules ( oneshot:: Sender < Result < ( ) , PlatformError > > ) ,
96
- #[ cfg( target_os = "linux" ) ]
97
86
NewChangeListener ( oneshot:: Sender < mpsc:: UnboundedReceiver < CallbackMessage > > ) ,
98
- #[ cfg( target_os = "linux" ) ]
99
87
GetMtuForRoute ( IpAddr , oneshot:: Sender < Result < u16 , PlatformError > > ) ,
100
88
/// Attempt to fetch a route for the given destination with an optional firewall mark.
101
- #[ cfg( target_os = "linux" ) ]
102
89
GetDestinationRoute (
103
90
IpAddr ,
104
91
Option < Fwmark > ,
105
92
oneshot:: Sender < Result < Option < Route > , PlatformError > > ,
106
93
) ,
107
94
}
108
95
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
+
109
125
/// Event that is sent when a preferred non-tunnel default route is
110
126
/// added or removed.
111
127
#[ cfg( target_os = "macos" ) ]
0 commit comments