Exemple #1
0
        /// <summary>
        /// Initializes a new intance of the <see cref="PrivoxyProxy"/> service
        /// </summary>
        public TrouProxy(TorProxySettings torSettings, TorControllerSettings controllerSettings, PrivoxyProxySettings privoxySettings)
        {
            // -- Instance

            Tor        = new TorProxy(torSettings);
            Controller = new TorController(controllerSettings);

            Privoxy = new PrivoxyProxy(privoxySettings);
        }
Exemple #2
0
 /// <summary>
 /// Initializes a new intance of the <see cref="TorController"/> service
 /// </summary>
 public TorController(TorControllerSettings settings)
 {
     // Save
     Settings = settings;
 }