v2ray-core/transport/internet/tls/config.proto

22 lines
524 B
Protocol Buffer
Raw Normal View History

2016-10-02 21:43:58 +00:00
syntax = "proto3";
package v2ray.core.transport.internet.tls;
option go_package = "tls";
option java_package = "com.v2ray.core.transport.internet.tls";
option java_outer_classname = "ConfigProto";
message Certificate {
2016-10-18 13:31:39 +00:00
// TLS certificate in x509 format.
2016-10-02 21:43:58 +00:00
bytes Certificate = 1;
2016-10-18 13:31:39 +00:00
// TLS key in x509 format.
2016-10-02 21:43:58 +00:00
bytes Key = 2;
}
message Config {
2016-10-18 13:31:39 +00:00
// Whether or not to allow self-signed certificates.
2016-10-02 21:43:58 +00:00
bool allow_insecure = 1;
2016-10-18 13:31:39 +00:00
// List of certificates to be served on server.
2016-10-02 21:43:58 +00:00
repeated Certificate certificate = 2;
}