You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@trafficserver.apache.org by shinrich <gi...@git.apache.org> on 2015/07/13 22:46:57 UTC

[GitHub] trafficserver pull request: Added SSL related fields to access.log

Github user shinrich commented on a diff in the pull request:

    https://github.com/apache/trafficserver/pull/122#discussion_r34509593
  
    --- Diff: iocore/net/P_SSLNetVConnection.h ---
    @@ -120,6 +120,28 @@ class SSLNetVConnection:public UnixNetVConnection
         sslClientRenegotiationAbort = state;
       };
     
    +  const char * get_ssl_protocol(void) const
    +  {
    +    if ( ssl == NULL )
    +      return NULL;
    +    return SSL_get_cipher_version(ssl);
    --- End diff --
    
    Agreed, SSL_get_version is probably what you want here.  


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---