Examples of TorConfigProxy


Examples of com.subgraph.orchid.config.TorConfigProxy

   *                   before calling this method to create a <code>TorConfig</code>
   * @return A new <code>TorConfig</code> instance.
   * @see TorConfig
   */
  static public TorConfig createConfig() {
    final TorConfig config = (TorConfig) Proxy.newProxyInstance(TorConfigProxy.class.getClassLoader(), new Class[] { TorConfig.class }, new TorConfigProxy());
    if(isAndroidRuntime()) {
      logger.warning("Android Runtime detected, disabling V2 Link protocol");
      config.setHandshakeV2Enabled(false);
    }
    return config;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.