*/
private Pattern trustedProxies = null;
+
+ /**
+ * Default constructor that ensures {@link ValveBase#ValveBase(boolean)} is
+ * called with <code>true</code>.
+ */
+ public RemoteIpValve() {
+ // Async requests are supported with this valve
+ super(true);
+ }
+
+
public int getHttpsServerPort() {
return httpsServerPort;
}
Ensure that the SSLValve provides the SSL key size as an Integer rather
than a String. (markt)
</fix>
+ <fix>
+ Ensure that the RemoteIpValve works correctly with Servlet 3.0
+ asynchronous requests. (markt)
+ </fix>
</changelog>
</subsection>
</section>