Hello, 

I am working on version 1.0.0. As per code, SSL renegotiate isn't supported.
Seems it's still not supported on latest version too. Any specific reason 
for not supporting it?
- Latest stack code snippet
tsi_result DoSslWrite(...) {
  ...
  int ssl_write_result = SSL_write(ssl, unprotected_bytes,
                                  
 static_cast<int>(unprotected_bytes_size));
  if (ssl_write_result < 0) {
    ssl_write_result = SSL_get_error(ssl, ssl_write_result);
    if (ssl_write_result == SSL_ERROR_WANT_READ) {
      gpr_log(GPR_ERROR,
              "Peer tried to renegotiate SSL connection. This is 
unsupported.");
      return TSI_UNIMPLEMENTED;
    ...

-- 
You received this message because you are subscribed to the Google Groups 
"grpc.io" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to grpc-io+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/grpc-io/7af89d03-c898-4829-9a21-1f25ed7476acn%40googlegroups.com.

Reply via email to