Add missing property
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Mon, 23 Nov 2009 00:23:41 +0000 (00:23 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Mon, 23 Nov 2009 00:23:41 +0000 (00:23 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@883198 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/coyote/http11/AbstractHttp11Protocol.java

index 5a435ef..6fa73f3 100644 (file)
@@ -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;