public void Stop()
 {
     if (stopped)
     {
         return;
     }
     stopped = true;
     local.Stop();
     polipoRunner.Stop();
     if (_config.enabled)
     {
         SystemProxy.Disable();
     }
 }
 public void Stop()
 {
     if (stopped)
     {
         return;
     }
     stopped = true;
     if (local != null)
     {
         local.Stop();
     }
     if (polipoRunner != null)
     {
         polipoRunner.Stop();
     }
     if (_config.enabled)
     {
         SystemProxy.Disable();
     }
 }