1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-16 02:04:35 -04:00
v2fly/transport/internet/tls/config.proto

47 lines
1.1 KiB
Protocol Buffer
Raw Normal View History

2016-10-02 17:43:58 -04:00
syntax = "proto3";
package v2ray.core.transport.internet.tls;
2016-12-22 18:24:28 -05:00
option csharp_namespace = "V2Ray.Core.Transport.Internet.Tls";
2016-10-02 17:43:58 -04:00
option go_package = "tls";
option java_package = "com.v2ray.core.transport.internet.tls";
2017-02-03 17:15:10 -05:00
option java_multiple_files = true;
2016-10-02 17:43:58 -04:00
message Certificate {
2016-10-18 09:31:39 -04:00
// TLS certificate in x509 format.
2016-10-02 17:43:58 -04:00
bytes Certificate = 1;
2016-10-18 09:31:39 -04:00
// TLS key in x509 format.
2016-10-02 17:43:58 -04:00
bytes Key = 2;
enum Usage {
ENCIPHERMENT = 0;
AUTHORITY_VERIFY = 1;
AUTHORITY_ISSUE = 2;
}
Usage usage = 3;
2016-10-02 17:43:58 -04:00
}
message Config {
2016-10-18 09:31:39 -04:00
// Whether or not to allow self-signed certificates.
2016-10-02 17:43:58 -04:00
bool allow_insecure = 1;
2016-10-18 09:31:39 -04:00
// Whether or not to allow insecure cipher suites.
bool allow_insecure_ciphers = 5;
2016-10-18 09:31:39 -04:00
// List of certificates to be served on server.
2016-10-02 17:43:58 -04:00
repeated Certificate certificate = 2;
2016-12-11 17:58:37 -05:00
// Override server name.
string server_name = 3;
2018-01-02 12:16:36 -05:00
// Lists of string as ALPN values.
repeated string next_protocol = 4;
// Whether or not to disable session (ticket) resumption.
bool disable_session_resumption = 6;
// If true, root certificates on the system will not be loaded for verification.
bool disable_system_root = 7;
}