1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-01 19:45:24 +00:00
v2fly/transport/internet/tls/config.proto

45 lines
1.1 KiB
Protocol Buffer
Raw Normal View History

2016-10-02 21:43:58 +00:00
syntax = "proto3";
package v2ray.core.transport.internet.tls;
2016-12-22 23:24:28 +00:00
option csharp_namespace = "V2Ray.Core.Transport.Internet.Tls";
2021-02-16 20:31:50 +00:00
option go_package = "github.com/v2fly/v2ray-core/v4/transport/internet/tls";
2016-10-02 21:43:58 +00:00
option java_package = "com.v2ray.core.transport.internet.tls";
2017-02-03 22:15:10 +00:00
option java_multiple_files = true;
2016-10-02 21:43:58 +00:00
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;
enum Usage {
ENCIPHERMENT = 0;
AUTHORITY_VERIFY = 1;
AUTHORITY_ISSUE = 2;
}
Usage usage = 3;
2016-10-02 21:43:58 +00:00
}
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;
2016-12-11 22:58:37 +00:00
// Override server name.
string server_name = 3;
2018-01-02 17:16:36 +00:00
// Lists of string as ALPN values.
repeated string next_protocol = 4;
// Whether or not to enable session (ticket) resumption.
bool enable_session_resumption = 5;
// If true, root certificates on the system will not be loaded for
// verification.
bool disable_system_root = 6;
}