[grpc-io] Re: TLS with a gRPC C++ server

2018-04-25 Thread Todd Defilippi
issues/9593 > > HTH. > > > > On Sunday, April 22, 2018 at 8:43:48 AM UTC-7, Todd Defilippi wrote: >> >> I am trying to get TLS authentication working for a C++ server >> implementation I am working on. >> >> The relevant code is: >> >

[grpc-io] TLS with a gRPC C++ server

2018-04-22 Thread Todd Defilippi
I am trying to get TLS authentication working for a C++ server implementation I am working on. The relevant code is: grpc::SslServerCredentialsOptions::PemKeyCertPair keyCert = { tlsKeyContents_, tlsCertContents_ }; grpc::SslServerCredentialsOptions sslOps;

[grpc-io] Async clients and completion queues

2018-03-22 Thread Todd Defilippi
I have a number of async clients that are connecting to services on multiple async servers. Should each client have its own completion queue or does it need to be shared among all clients? (Or are both allowable and it's a design choice?) On a related note, I'm trying to pin down the correct

[grpc-io] Re: Non-blocking single-threaded streaming C++ server

2018-03-12 Thread Todd Defilippi
one thread for the server. > This may not be the final form as we intended to support threading model > fully controlled by the user. However, there is no timeline for those > background threads to be removed at the moment. > > On Thursday, February 22, 2018 at 11:01:37 AM UTC-8, Todd Defil

[grpc-io] Non-blocking single-threaded streaming C++ server

2018-02-22 Thread Todd Defilippi
I am trying to write a streaming server as part of implementing a gRPC dial-out collector for Cisco's model-driven telemetry (https://github.com/cisco/bigmuddy-network-telemetry-proto/blob/master/proto_archive/mdt_grpc_dialout/mdt_grpc_dialout.proto). Is there a way to create the gRPC server

[grpc-io] Re: Issues trying to build source code

2018-02-21 Thread Todd Defilippi
Thanks! I was able to get everything built and RPMed with libcares 1.11. Todd On Wednesday, February 21, 2018 at 10:45:37 AM UTC-8, Ken Payson wrote: > > Yes, the minimum libcares version supported is 1.11.0 . > > On Friday, February 16, 2018 at 12:14:38 PM UTC-8, Todd Defilippi wr

[grpc-io] Re: Issues trying to build source code

2018-02-16 Thread Todd Defilippi
day, February 16, 2018 at 11:58:33 AM UTC-8, Todd Defilippi wrote: > > Actually I think I may have figured it out. I was getting some pkg_config > complaints about libcares (which I had already installed on my system). > Running as > > make HAS_PKG_CONFIG=false HAS_SYSTEM_CARES=true >

[grpc-io] Re: Issues trying to build source code

2018-02-16 Thread Todd Defilippi
it continues to! Thanks, Todd On Friday, February 16, 2018 at 11:39:55 AM UTC-8, Todd Defilippi wrote: > > I have some issues trying to build the gRPC source code from the > tgz-ball. Is this the right place to ask about that? > > Thanks, > Todd > -- You received this message becau