renegotiate method

  1. @override
void renegotiate({
  1. bool useSessionCache = true,
  2. bool requestClientCertificate = false,
  3. bool requireClientCertificate = false,
})
override

Does nothing.

The original intent was to allow TLS renegotiation of existing secure connections.

Implementation

@override
void renegotiate({bool useSessionCache = true, bool requestClientCertificate = false, bool requireClientCertificate = false}) => rawSecureSocket.renegotiate(useSessionCache: useSessionCache, requestClientCertificate: requestClientCertificate, requireClientCertificate: requireClientCertificate);