| Commit message (Collapse) | Author | Age |
|
|
|
|
|
|
| |
with no logs set at all.
svn:r6604
|
|
|
|
|
|
|
|
| |
hops to use for testing circuits. Perhaps this will let me debug the
reachability problem better.
svn:r6581
|
|
|
|
| |
svn:r6569
|
|
|
|
|
|
|
|
| |
concept. lay groundwork for "bandwidth classes" -- separate global
buckets that apply depending on what sort of conn it is.
svn:r6563
|
|
|
|
|
|
| |
we have to explicitly "use" unuseds, but it can catch bugs. (It caught two coding mistakes so far.)
svn:r6532
|
|
|
|
| |
svn:r6492
|
|
|
|
| |
svn:r6471
|
|
|
|
| |
svn:r6400
|
|
|
|
|
|
| |
get handed out in response to mapaddress requests. Needs testing and docs!
svn:r6398
|
|
|
|
|
|
|
|
|
|
| |
our rendezvous descriptors to it.
eventually we might make a 'v1only' tag that explains it's only
for rendezvous descriptors.
svn:r6382
|
|
|
|
| |
svn:r6381
|
|
|
|
| |
svn:r6377
|
|
|
|
| |
svn:r6373
|
|
|
|
| |
svn:r6357
|
|
|
|
|
|
|
|
| |
have some overhead for valgrind on linux, where the default
ulimit -n is 1024.
svn:r6338
|
|
|
|
| |
svn:r6327
|
|
|
|
|
|
|
|
| |
when you plan to run "exitlist" on this client and you want to know
about even the non-running descriptors.
svn:r6326
|
|
|
|
| |
svn:r6323
|
|
|
|
|
|
| |
Also, fix some whitespace.
svn:r6317
|
|
|
|
| |
svn:r6287
|
|
|
|
|
|
|
| |
Fix some minor bugs and memory leaks along the way.
svn:r6246
|
|
|
|
| |
svn:r6242
|
|
|
|
|
|
|
| |
in a string and hand it back. This starts to resolve bug 275.
svn:r6241
|
|
|
|
|
|
|
|
| |
Both are wrong or at least not entirely correct but nobody would
understand "special-use address as listed in RFC3330" I guess.
svn:r6236
|
|
|
|
| |
svn:r6220
|
|
|
|
| |
svn:r6219
|
|
|
|
|
|
|
|
|
|
| |
wait unattached before we fail it?
Use this value for controller socks timeout, for normal socks
timeout, and for hidden-service socks timeout.
svn:r6217
|
|
|
|
|
|
|
| |
picked by the old wrong algorithms.
svn:r6215
|
|
|
|
| |
svn:r6209
|
|
|
|
| |
svn:r6205
|
|
|
|
|
|
|
|
| |
Also put a URL in the warning message for unsafe socks4 use --
previously we'd only had the URL for unsafe socks5 use. Oops.
svn:r6190
|
|
|
|
|
|
|
| |
'named' and 'valid'.
svn:r6188
|
|
|
|
| |
svn:r6186
|
|
|
|
|
|
|
|
| |
But versioning dirservers do need to cause recommendclientversions
and recommendedserverversions to somehow be non-empty.
svn:r6181
|
|
|
|
|
|
|
| |
auth dir server, don't demand that we define RecommendedVersions.
svn:r6180
|
|
|
|
|
|
|
|
| |
but that doesn't mean we need to remind them every time
they start up.
svn:r6179
|
|
|
|
| |
svn:r6174
|
|
|
|
| |
svn:r6159
|
|
|
|
|
|
|
|
| |
and our hostname resolves to a private IP address, try
to use an interface address if it has a public address.
svn:r6158
|
|
|
|
|
|
|
|
|
| |
we were doing "is_internal_IP(htonl(in.s_addr))" but in.s_addr is
in network order and is_internal_IP wants host order. Change to
"is_internal_IP(ntohl(in.s_addr))".
svn:r6155
|
|
|
|
| |
svn:r6143
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
1) Surround all constants by (parens), whether we'll be using them
in a denominator or not.
2) Express all time periods as products (24*60*60), not as multiplied-out
constants (86400).
3) Comments like "(60*60) /* one hour */" are as pointless as comments
like "c = a + b; /* set c to the sum of a and b */". Remove them.
4) All time periods should be #defined constants, not given inline.
5) All time periods should have doxygen comments.
6) All time periods, unless specified, are in seconds. It's not necessary
to say so.
To summarize, the old (lack of) style would allow:
#define FOO_RETRY_INTERVAL 60*60 /* one hour (seconds) */
next_try = now + 3600;
The new style is:
/** How often do we reattempt foo? */
#define FOO_RETRY_INTERVAL (60*60)
next_try = now + RETRY_INTERVAL;
svn:r6142
|
|
|
|
| |
svn:r6137
|
|
|
|
|
|
|
|
| |
config option from the torrc and it has no value, warn and
skip rather than silently resetting it to its default.
svn:r6125
|
|
|
|
|
|
| |
the log. Use them everywhere except for routerinfo->plaftorm, routerinfo->contact_info, and rend*.c. (need sleep now)
svn:r6087
|
|
|
|
|
|
| |
understand it); needs testing.
svn:r6086
|
|
|
|
| |
svn:r6052
|
|
|
|
| |
svn:r6050
|
|
|
|
|
|
|
| |
the controller.
svn:r6049
|
|
|
|
|
|
|
|
|
|
|
|
| |
FetchServerDescriptors and FetchHidServDescriptors for whether
to fetch server info and hidserv info or let the controller do it,
and also PublishServerDescriptor and PublishHidServDescriptors.
Add AllDirActionsPrivate undocumented option -- if you set it, you'll
need the controller to bootstrap you enough to build your first circuits.
svn:r6047
|