Skip to content
Snippets Groups Projects
Commit 6130809a authored by vjpai's avatar vjpai Committed by Vijay S Pai
Browse files

Work around a compiler limitation caused by inability to properly handle

vectors created from initializer list
parent 92a928fa
No related branches found
No related tags found
No related merge requests found
...@@ -213,8 +213,11 @@ void RunServer() { ...@@ -213,8 +213,11 @@ void RunServer() {
builder.RegisterService(&service); builder.RegisterService(&service);
std::shared_ptr<ServerCredentials> creds = grpc::InsecureServerCredentials(); std::shared_ptr<ServerCredentials> creds = grpc::InsecureServerCredentials();
if (FLAGS_enable_ssl) { if (FLAGS_enable_ssl) {
SslServerCredentialsOptions ssl_opts = { SslServerCredentialsOptions::PemKeyCertPair pkcp = {test_server1_key,
"", {{test_server1_key, test_server1_cert}}}; test_server1_cert};
SslServerCredentialsOptions ssl_opts;
ssl_opts.pem_root_certs = "";
ssl_opts.pem_key_cert_pairs.push_back(pkcp);
creds = grpc::SslServerCredentials(ssl_opts); creds = grpc::SslServerCredentials(ssl_opts);
} }
builder.AddListeningPort(server_address.str(), creds); builder.AddListeningPort(server_address.str(), creds);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment