| .. |
|
Makefile.am
|
240ee1866b
Add experimental support for learning svn revision number in git-svn based repositories. Fancy.
|
17 years ago |
|
buffers.c
|
122170c1d3
Downlgrade tweak, and answer lots of XXX021s. No actual code fixes in this patch.
|
17 years ago |
|
circuitbuild.c
|
122170c1d3
Downlgrade tweak, and answer lots of XXX021s. No actual code fixes in this patch.
|
17 years ago |
|
circuitlist.c
|
b91335117f
Document the purpose argument of circuit_find_to_cannibalize
|
17 years ago |
|
circuituse.c
|
122170c1d3
Downlgrade tweak, and answer lots of XXX021s. No actual code fixes in this patch.
|
17 years ago |
|
command.c
|
122170c1d3
Downlgrade tweak, and answer lots of XXX021s. No actual code fixes in this patch.
|
17 years ago |
|
config.c
|
122170c1d3
Downlgrade tweak, and answer lots of XXX021s. No actual code fixes in this patch.
|
17 years ago |
|
connection.c
|
bf80e2df3f
Replace calls to time(NULL) that occur on the order of once per read, one per write, or once per cell with calls to a function that looks at a cached value of time. This is tricksy to benchmark, since it will only help on systems where time() is a syscall and syscalls are relatively slow.
|
17 years ago |
|
connection_edge.c
|
bf80e2df3f
Replace calls to time(NULL) that occur on the order of once per read, one per write, or once per cell with calls to a function that looks at a cached value of time. This is tricksy to benchmark, since it will only help on systems where time() is a syscall and syscalls are relatively slow.
|
17 years ago |
|
connection_or.c
|
122170c1d3
Downlgrade tweak, and answer lots of XXX021s. No actual code fixes in this patch.
|
17 years ago |
|
control.c
|
d597b23c42
Massage a little code to hopfully please coverity.
|
17 years ago |
|
cpuworker.c
|
fcf817f897
Switch global_identifier on connections to a 64-bit field and move it to connection_t. When procession onionskins, look up the connection by this field rather than by addr:port. This will keep us from dropping onionskins. How many dropped circuits are dropped because of this bug?
|
17 years ago |
|
directory.c
|
122170c1d3
Downlgrade tweak, and answer lots of XXX021s. No actual code fixes in this patch.
|
17 years ago |
|
dirserv.c
|
122170c1d3
Downlgrade tweak, and answer lots of XXX021s. No actual code fixes in this patch.
|
17 years ago |
|
dirvote.c
|
9c65195449
Apply rovv's patch for bug 864: avoid null error on detached signature handling failure.
|
17 years ago |
|
dns.c
|
122170c1d3
Downlgrade tweak, and answer lots of XXX021s. No actual code fixes in this patch.
|
17 years ago |
|
dnsserv.c
|
122170c1d3
Downlgrade tweak, and answer lots of XXX021s. No actual code fixes in this patch.
|
17 years ago |
|
eventdns.c
|
148e4e8837
Do not leak the DNS server port structure.
|
17 years ago |
|
eventdns.h
|
0c9dfffe5a
Implement the 0x20-hack to make DNS poisoning harder against us, especially when resolving large names. Add a cfg option to disable it, since apparently 3/10 of a percent of servers get it wrong.
|
17 years ago |
|
eventdns_tor.h
|
842a33ff20
Update some copyright notices: it is now 2008.
|
18 years ago |
|
geoip.c
|
ecaee1d927
Remove fixed xxx020s; downgrade unfixed ones.
|
17 years ago |
|
hibernate.c
|
e7db789e82
r14399@tombo: nickm | 2008-02-22 14:09:38 -0500
|
18 years ago |
|
main.c
|
c3e4b12e7f
Why were we using gettimeofday() in second_elapsed_callback? We were only ever looking at the tv_sec field.
|
17 years ago |
|
networkstatus.c
|
122170c1d3
Downlgrade tweak, and answer lots of XXX021s. No actual code fixes in this patch.
|
17 years ago |
|
ntmain.c
|
4e6b6e3ad7
r19092@catbus: nickm | 2008-03-27 12:43:29 -0400
|
17 years ago |
|
onion.c
|
e7db789e82
r14399@tombo: nickm | 2008-02-22 14:09:38 -0500
|
18 years ago |
|
or.h
|
122170c1d3
Downlgrade tweak, and answer lots of XXX021s. No actual code fixes in this patch.
|
17 years ago |
|
policies.c
|
122170c1d3
Downlgrade tweak, and answer lots of XXX021s. No actual code fixes in this patch.
|
17 years ago |
|
reasons.c
|
122170c1d3
Downlgrade tweak, and answer lots of XXX021s. No actual code fixes in this patch.
|
17 years ago |
|
relay.c
|
c67bd80487
Make cell pools always-on.
|
17 years ago |
|
rendclient.c
|
122170c1d3
Downlgrade tweak, and answer lots of XXX021s. No actual code fixes in this patch.
|
17 years ago |
|
rendcommon.c
|
5c235cb5ec
Fix memory leak in rend_cache_store_v2_desc_as_client(), and refactor the function to use the "goto err" idiom.
|
17 years ago |
|
rendmid.c
|
842a33ff20
Update some copyright notices: it is now 2008.
|
18 years ago |
|
rendservice.c
|
426b53d85a
Apply patch from Karsten to fix bug 879. Backport candidate.
|
17 years ago |
|
rephist.c
|
122170c1d3
Downlgrade tweak, and answer lots of XXX021s. No actual code fixes in this patch.
|
17 years ago |
|
router.c
|
1b735e46dd
Make it possible to call set_onion_key twice without leaking RAM.
|
17 years ago |
|
routerlist.c
|
122170c1d3
Downlgrade tweak, and answer lots of XXX021s. No actual code fixes in this patch.
|
17 years ago |
|
routerparse.c
|
f43bcdc063
Use ctags and a python script to find identifiers that are never used anywhere, and remove the ones that we really want gone.
|
17 years ago |
|
test.c
|
bf80e2df3f
Replace calls to time(NULL) that occur on the order of once per read, one per write, or once per cell with calls to a function that looks at a cached value of time. This is tricksy to benchmark, since it will only help on systems where time() is a syscall and syscalls are relatively slow.
|
17 years ago |
|
test_data.c
|
69ce955484
Add cross-certification to authority key certificates. Partial implementation of proposal 157.
|
17 years ago |
|
tor_main.c
|
842a33ff20
Update some copyright notices: it is now 2008.
|
18 years ago |