You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2010/11/23 18:34:59 UTC

svn commit: r1038215 - /trafficserver/traffic/trunk/iocore/net/P_SSLNetProcessor.h

Author: zwoop
Date: Tue Nov 23 17:34:59 2010
New Revision: 1038215

URL: http://svn.apache.org/viewvc?rev=1038215&view=rev
Log:
TS-554 Minor cosmetic cleanup

Modified:
    trafficserver/traffic/trunk/iocore/net/P_SSLNetProcessor.h

Modified: trafficserver/traffic/trunk/iocore/net/P_SSLNetProcessor.h
URL: http://svn.apache.org/viewvc/trafficserver/traffic/trunk/iocore/net/P_SSLNetProcessor.h?rev=1038215&r1=1038214&r2=1038215&view=diff
==============================================================================
--- trafficserver/traffic/trunk/iocore/net/P_SSLNetProcessor.h (original)
+++ trafficserver/traffic/trunk/iocore/net/P_SSLNetProcessor.h Tue Nov 23 17:34:59 2010
@@ -67,9 +67,10 @@ public:
   int initSSLServerCTX(SslConfigParams * param,
                        SSL_CTX * ctx, char *serverCertPtr, char *serverKeyPtr, bool defaultEnabled);
 
-  SSL_CTX *getSSL_CTX(void) const {return (ctx); }
-  SSL_CTX *getClientSSL_CTX(void) const { return (client_ctx); }
-  int getAcceptPort() { return (accept_port_number); }
+  SSL_CTX *getSSL_CTX(void) const {return ctx; }
+  SSL_CTX *getClientSSL_CTX(void) const { return client_ctx; }
+  int getAcceptPort() { return accept_port_number; }
+
   static void logSSLError(const char *errStr = "", int critical = 1);
 
   SSLNetProcessor()