We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d502d60 commit 1782216Copy full SHA for 1782216
src/singbox/common/tls.rs
@@ -1,4 +1,4 @@
1
-use super::base::Strategy;
+use super::base::{SingleOrMultipleValue, Strategy};
2
use serde::{Deserialize, Serialize};
3
use serde_with::skip_serializing_none;
4
@@ -78,8 +78,9 @@ pub struct Ech {
78
pub struct Reality {
79
enabled: Option<bool>,
80
handshake: Option<RealityHandshake>,
81
+ public_key: Option<String>,
82
private_key: Option<String>,
- short_id: Option<Vec<String>>,
83
+ short_id: Option<SingleOrMultipleValue<String>>,
84
max_time_difference: Option<String>,
85
}
86
0 commit comments