Return-Path: Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: (qmail 79935 invoked from network); 19 Nov 2009 14:01:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 19 Nov 2009 14:01:52 -0000 Received: (qmail 13138 invoked by uid 500); 19 Nov 2009 14:01:50 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 13059 invoked by uid 500); 19 Nov 2009 14:01:50 -0000 Mailing-List: contact dev-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Developers List" Delivered-To: mailing list dev@tomcat.apache.org Received: (qmail 13048 invoked by uid 99); 19 Nov 2009 14:01:50 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Nov 2009 14:01:50 +0000 X-ASF-Spam-Status: No, hits=-2.7 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Nov 2009 14:01:48 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 4B5F92388874; Thu, 19 Nov 2009 14:01:28 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r882148 - /tomcat/trunk/java/org/apache/tomcat/util/net/jsse/JSSESocketFactory.java Date: Thu, 19 Nov 2009 14:01:28 -0000 To: dev@tomcat.apache.org From: markt@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091119140128.4B5F92388874@eris.apache.org> Author: markt Date: Thu Nov 19 14:01:27 2009 New Revision: 882148 URL: http://svn.apache.org/viewvc?rev=882148&view=rev Log: Remove unused code Modified: tomcat/trunk/java/org/apache/tomcat/util/net/jsse/JSSESocketFactory.java Modified: tomcat/trunk/java/org/apache/tomcat/util/net/jsse/JSSESocketFactory.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/net/jsse/JSSESocketFactory.java?rev=882148&r1=882147&r2=882148&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/tomcat/util/net/jsse/JSSESocketFactory.java (original) +++ tomcat/trunk/java/org/apache/tomcat/util/net/jsse/JSSESocketFactory.java Thu Nov 19 14:01:27 2009 @@ -161,7 +161,6 @@ asock.addHandshakeCompletedListener( new DisableSslRenegotiation()); } - configureClientAuth(asock); } catch (SSLException e){ throw new SocketException("SSL handshake error" + e.toString()); } @@ -746,17 +745,6 @@ } /** - * Configure Client authentication for this version of JSSE. The - * JSSE included in Java 1.4 supports the 'want' value. Prior - * versions of JSSE will treat 'want' as 'false'. - * @param socket the SSLSocket - */ - protected void configureClientAuth(SSLSocket socket){ - // Per JavaDocs: SSLSockets returned from - // SSLServerSocket.accept() inherit this setting. - } - - /** * Configures the given SSL server socket with the requested cipher suites, * protocol versions, and need for client authentication */ --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org