From: markt Date: Mon, 23 Nov 2009 00:23:41 +0000 (+0000) Subject: Add missing property X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=8a9d1f20e8cbcfd23237efb054ec6b64ada859c7;p=tomcat7.0 Add missing property git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@883198 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/org/apache/coyote/http11/AbstractHttp11Protocol.java b/java/org/apache/coyote/http11/AbstractHttp11Protocol.java index 5a435efc7..6fa73f31c 100644 --- a/java/org/apache/coyote/http11/AbstractHttp11Protocol.java +++ b/java/org/apache/coyote/http11/AbstractHttp11Protocol.java @@ -383,6 +383,12 @@ public abstract class AbstractHttp11Protocol implements ProtocolHandler, MBeanRe public void setSessionTimeout(String s){endpoint.setTruststoreAlgorithm(s);} public String getSessionTimeout(){ return endpoint.getTruststoreAlgorithm();} + public void setAllowUnsafeLegacyRenegotiation(String s) { + endpoint.setAllowUnsafeLegacyRenegotiation(s); + } + public String getAllowUnsafeLegacyRenegotiation() { + return endpoint.getAllowUnsafeLegacyRenegotiation(); + } public abstract void init() throws Exception; public abstract void start() throws Exception;