Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'cli/src/tunnels/protocol.rs')
-rw-r--r--cli/src/tunnels/protocol.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/src/tunnels/protocol.rs b/cli/src/tunnels/protocol.rs
index 649b15fed39..5f8d904cbcd 100644
--- a/cli/src/tunnels/protocol.rs
+++ b/cli/src/tunnels/protocol.rs
@@ -91,6 +91,9 @@ pub struct ServeParams {
pub extensions: Vec<String>,
#[serde(default)]
pub use_local_download: bool,
+ /// If true, the client and server should gzip servermsg's sent in either direction.
+ #[serde(default)]
+ pub compress: bool,
}
#[derive(Deserialize, Serialize, Debug)]