[tor-bugs] #11156 [Tor]: "can't find a pluggable transport proxy" errors when obfsproxy started up

Tor Bug Tracker & Wiki blackhole at torproject.org
Fri Mar 7 14:25:18 UTC 2014


#11156: "can't find a pluggable transport proxy" errors when obfsproxy started up
------------------------+--------------------------------
     Reporter:  asn     |      Owner:
         Type:  defect  |     Status:  new
     Priority:  normal  |  Milestone:  Tor: 0.2.5.x-final
    Component:  Tor     |    Version:
   Resolution:          |   Keywords:  tor-pt tor-client
Actual Points:          |  Parent ID:
       Points:          |
------------------------+--------------------------------

Comment (by asn):

 FWIW, the simple patch I tried is:
 {{{
 diff --git a/src/or/main.c b/src/or/main.c
 index b0529cd..366d583 100644
 --- a/src/or/main.c
 +++ b/src/or/main.c
 @@ -1462,7 +1462,9 @@ run_scheduled_events(time_t now)
    if (time_to_download_networkstatus < now && !options->DisableNetwork) {
      time_to_download_networkstatus =
        now + networkstatus_dl_check_interval(options);
 -    update_networkstatus_downloads(now);
 +    if (!pt_proxies_configuration_pending()) {
 +        update_networkstatus_downloads(now);
 +    }
    }
 }}}

 This seems to happen on the second restart, because we've already cached
 the descriptors of the bridges, so Tor jumps directly to consensus
 download.

--
Ticket URL: <https://trac.torproject.org/projects/tor/ticket/11156#comment:3>
Tor Bug Tracker & Wiki <https://trac.torproject.org/>
The Tor Project: anonymity online


More information about the tor-bugs mailing list