From 8a9d1f20e8cbcfd23237efb054ec6b64ada859c7 Mon Sep 17 00:00:00 2001 From: markt Date: Mon, 23 Nov 2009 00:23:41 +0000 Subject: [PATCH] Add missing property git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@883198 13f79535-47bb-0310-9956-ffa450edef68 --- java/org/apache/coyote/http11/AbstractHttp11Protocol.java | 6 ++++++ 1 file changed, 6 insertions(+) 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; -- 2.11.0