Package net.grinder.tools.tcpproxy

Examples of net.grinder.tools.tcpproxy.PortForwarderTCPProxyEngine


            requestFilter, responseFilter, output, logger,
            localEndPoint, useColour, timeout, chainedHTTPProxy,
            chainedHTTPSProxy);
      } else {
        if (useSSLPortForwarding) {
          m_proxyEngine = new PortForwarderTCPProxyEngine(
              sslSocketFactory, requestFilter, responseFilter,
              output, logger, new ConnectionDetails(
                  localEndPoint, remoteEndPoint, true),
              useColour, timeout);
        } else {
          m_proxyEngine = new PortForwarderTCPProxyEngine(
              requestFilter, responseFilter, output, logger,
              new ConnectionDetails(localEndPoint,
                  remoteEndPoint, false), useColour, timeout);
        }
      }
View Full Code Here

TOP

Related Classes of net.grinder.tools.tcpproxy.PortForwarderTCPProxyEngine

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.