| Index: blimp/client/app/blimp_client_switches.h
|
| diff --git a/blimp/client/app/blimp_client_switches.h b/blimp/client/app/blimp_client_switches.h
|
| index 19b91ddd03d18cc36ec05c2987aa935e8b2f4991..d42f2de7a62fab2e51f3f8fbcfdd09a00e8e6c2a 100644
|
| --- a/blimp/client/app/blimp_client_switches.h
|
| +++ b/blimp/client/app/blimp_client_switches.h
|
| @@ -10,7 +10,28 @@
|
| namespace blimp {
|
| namespace switches {
|
|
|
| -extern const char kBlimpletEndpoint[];
|
| +// The path to the engine's PEM-encoded X509 certificate.
|
| +// If specified, SSL connected Engines must supply this certificate
|
| +// for the connection to be valid.
|
| +// e.g.:
|
| +// --engine-cert-path=/home/blimp/certs/cert.pem
|
| +extern const char kEngineCertPath[];
|
| +
|
| +// Specifies the engine scheme, IP-address and port to connect to, e.g.:
|
| +// --engine-endpoint="tcp://127.0.0.1:25467". Valid schemes are "ssl",
|
| +// "tcp", and "quic".
|
| +// Specifies the engine's IP address. Must be used in conjunction with
|
| +// --engine-port and --engine-transport.
|
| +extern const char kEngineIP[];
|
| +
|
| +// Specifies the engine's listening port (1-65535).
|
| +// Must be used in conjunction with --engine-ip and --engine-transport.
|
| +extern const char kEnginePort[];
|
| +
|
| +// Specifies the transport used to communicate with the engine.
|
| +// Can be "tcp" or "ssl".
|
| +// Must be used in conjunction with --engine-ip and --engine-port.
|
| +extern const char kEngineTransport[];
|
|
|
| } // namespace switches
|
| } // namespace blimp
|
|
|