@@ -22,7 +22,6 @@ mod proto {
22
22
tonic:: include_proto!( "ephemeralpeer" ) ;
23
23
}
24
24
25
- #[ cfg( unix) ]
26
25
const DAITA_VERSION : u32 = 2 ;
27
26
28
27
#[ derive( Debug ) ]
@@ -88,7 +87,6 @@ pub const CONFIG_SERVICE_PORT: u16 = 1337;
88
87
89
88
pub struct EphemeralPeer {
90
89
pub psk : Option < PresharedKey > ,
91
- #[ cfg( unix) ]
92
90
pub daita : Option < DaitaSettings > ,
93
91
}
94
92
@@ -141,19 +139,15 @@ pub async fn request_ephemeral_peer_with(
141
139
wg_parent_pubkey : parent_pubkey. as_bytes ( ) . to_vec ( ) ,
142
140
wg_ephemeral_peer_pubkey : ephemeral_pubkey. as_bytes ( ) . to_vec ( ) ,
143
141
post_quantum : pq_request,
144
- #[ cfg( windows) ]
145
- daita : Some ( proto:: DaitaRequestV1 {
146
- activate_daita : enable_daita,
147
- } ) ,
148
- #[ cfg( windows) ]
149
- daita_v2 : None ,
150
- #[ cfg( unix) ]
151
142
daita : None ,
152
- #[ cfg( unix) ]
153
- daita_v2 : enable_daita. then ( || proto:: DaitaRequestV2 {
154
- level : i32:: from ( proto:: DaitaLevel :: LevelDefault ) ,
155
- platform : i32:: from ( get_platform ( ) ) ,
156
- version : DAITA_VERSION ,
143
+ daita_v2 : enable_daita. then ( || {
144
+ let platform = get_platform ( ) ;
145
+ log:: trace!( "DAITA v2 platform: {platform:?}" ) ;
146
+ proto:: DaitaRequestV2 {
147
+ level : i32:: from ( proto:: DaitaLevel :: LevelDefault ) ,
148
+ platform : i32:: from ( platform) ,
149
+ version : DAITA_VERSION ,
150
+ }
157
151
} ) ,
158
152
} )
159
153
. await
@@ -204,30 +198,22 @@ pub async fn request_ephemeral_peer_with(
204
198
None
205
199
} ;
206
200
207
- #[ cfg( unix) ]
208
- {
209
- let daita = response. daita . map ( |daita| DaitaSettings {
210
- client_machines : daita. client_machines ,
211
- max_padding_frac : daita. max_padding_frac ,
212
- max_blocking_frac : daita. max_blocking_frac ,
213
- } ) ;
214
- if daita. is_none ( ) && enable_daita {
215
- return Err ( Error :: MissingDaitaResponse ) ;
216
- }
217
- Ok ( EphemeralPeer { psk, daita } )
218
- }
219
-
220
- #[ cfg( windows) ]
221
- {
222
- Ok ( EphemeralPeer { psk } )
201
+ let daita = response. daita . map ( |daita| DaitaSettings {
202
+ client_machines : daita. client_machines ,
203
+ max_padding_frac : daita. max_padding_frac ,
204
+ max_blocking_frac : daita. max_blocking_frac ,
205
+ } ) ;
206
+ if daita. is_none ( ) && enable_daita {
207
+ return Err ( Error :: MissingDaitaResponse ) ;
223
208
}
209
+ Ok ( EphemeralPeer { psk, daita } )
224
210
}
225
211
226
- #[ cfg( unix) ]
227
212
const fn get_platform ( ) -> proto:: DaitaPlatform {
228
213
use proto:: DaitaPlatform ;
229
214
const PLATFORM : DaitaPlatform = if cfg ! ( target_os = "windows" ) {
230
- DaitaPlatform :: WindowsNative
215
+ // FIXME: wggo
216
+ DaitaPlatform :: LinuxWgGo
231
217
} else if cfg ! ( target_os = "linux" ) {
232
218
DaitaPlatform :: LinuxWgGo
233
219
} else if cfg ! ( target_os = "macos" ) {
0 commit comments