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

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/images
diff options
context:
space:
mode:
authorRadostin Stoyanov <rstoyanov1@gmail.com>2019-04-04 02:44:22 +0300
committerAndrei Vagin <avagin@gmail.com>2019-09-07 15:59:53 +0300
commit43842046984701db42286ebcd96f0270a063044f (patch)
tree6d3723c50a03b8429e52f577666a701ad064c209 /images
parentd4b4a6e6c3eb507b600dabcc9910103f2ab11d29 (diff)
rpc: Add support for TLS options
Signed-off-by: Radostin Stoyanov <rstoyanov1@gmail.com>
Diffstat (limited to 'images')
-rw-r--r--images/rpc.proto6
1 files changed, 6 insertions, 0 deletions
diff --git a/images/rpc.proto b/images/rpc.proto
index 16c5d5028..15e677a77 100644
--- a/images/rpc.proto
+++ b/images/rpc.proto
@@ -114,6 +114,12 @@ message criu_opts {
optional string config_file = 51;
optional bool tcp_close = 52;
optional string lsm_profile = 53;
+ optional string tls_cacert = 54;
+ optional string tls_cacrl = 55;
+ optional string tls_cert = 56;
+ optional string tls_key = 57;
+ optional bool tls = 58;
+ optional bool tls_no_cn_verify = 59;
/* optional bool check_mounts = 128; */
}