<feed xmlns='http://www.w3.org/2005/Atom'>
<title>user/shondoit/tor, branch bug4347</title>
<subtitle>Shondoit's tor repository</subtitle>
<link rel='alternate' type='text/html' href='https://gitweb.torproject.org/user/shondoit/tor.git/'/>
<entry>
<title>Win: Move geoip to Common AppData so that all users can access it.</title>
<updated>2012-06-02T17:42:44+00:00</updated>
<author>
<name>Shondoit Walker</name>
<email>shondoit@gmail.com</email>
</author>
<published>2012-06-02T17:33:55+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.torproject.org/user/shondoit/tor.git/commit/?id=cd022184658ca92547dacc878d6578daeb214755'/>
<id>cd022184658ca92547dacc878d6578daeb214755</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add changes file for bug 5283</title>
<updated>2012-05-31T20:57:26+00:00</updated>
<author>
<name>Roger Dingledine</name>
<email>arma@torproject.org</email>
</author>
<published>2012-05-16T00:50:29+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.torproject.org/user/shondoit/tor.git/commit/?id=b7e863c07305941d0c12b46da503fca694148abf'/>
<id>b7e863c07305941d0c12b46da503fca694148abf</id>
<content type='text'>
I called it a bugfix on 0.2.0.10-alpha, since git commit e5885deab is
where we introduced anonymized begin_dir connections.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
I called it a bugfix on 0.2.0.10-alpha, since git commit e5885deab is
where we introduced anonymized begin_dir connections.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make all begindir or one-hop circuits internal</title>
<updated>2012-05-31T20:55:54+00:00</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2012-05-15T13:41:45+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.torproject.org/user/shondoit/tor.git/commit/?id=834654f145cc1205e20cf5f07a37bef2e11252ce'/>
<id>834654f145cc1205e20cf5f07a37bef2e11252ce</id>
<content type='text'>
This solves bug 5283, where client traffic could get sent over the
same circuit as an anonymized connection to a directory, even if
that circuit used an exit node unsuitable for clients.  By marking
the directory connection as needs_internal, we ensure that the
(non-internal!) client-traffic connection won't be sent over the
same circuit.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This solves bug 5283, where client traffic could get sent over the
same circuit as an anonymized connection to a directory, even if
that circuit used an exit node unsuitable for clients.  By marking
the directory connection as needs_internal, we ensure that the
(non-internal!) client-traffic connection won't be sent over the
same circuit.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix more clang format-nonliteral warnings (bug 5969)</title>
<updated>2012-05-31T03:59:49+00:00</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2012-05-30T23:57:02+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.torproject.org/user/shondoit/tor.git/commit/?id=3a9351b57e528b1d0bd2e72bcf78db7c91b2ff8f'/>
<id>3a9351b57e528b1d0bd2e72bcf78db7c91b2ff8f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add __attribute__(format)s for our varargs printf/scanf wrappers</title>
<updated>2012-05-30T16:14:38+00:00</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2012-05-30T16:14:38+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.torproject.org/user/shondoit/tor.git/commit/?id=e28489467233bff4500a70f8a7b22e42ca3b3e68'/>
<id>e28489467233bff4500a70f8a7b22e42ca3b3e68</id>
<content type='text'>
It turns out that if you set the third argument of
__attribute__(format) to 0, GCC and Clang will check the format
argument without expecting to find variadic arguments.  This is the
correct behavior for vsnprintf, vasprintf, and vscanf.

I'm hoping this will fix bug 5969 (a clang warning) by telling clang that
the format argument to tor_vasprintf is indeed a format string.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It turns out that if you set the third argument of
__attribute__(format) to 0, GCC and Clang will check the format
argument without expecting to find variadic arguments.  This is the
correct behavior for vsnprintf, vasprintf, and vscanf.

I'm hoping this will fix bug 5969 (a clang warning) by telling clang that
the format argument to tor_vasprintf is indeed a format string.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make the succeeding parse_http_time tests more obviously right</title>
<updated>2012-05-16T16:19:56+00:00</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2012-05-16T16:19:56+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.torproject.org/user/shondoit/tor.git/commit/?id=75fc4dbbcabaedc715f0f9e883ccab1c9634e787'/>
<id>75fc4dbbcabaedc715f0f9e883ccab1c9634e787</id>
<content type='text'>
(When the correct answer is given in terms of seconds since the
epoch, it's hard to be sure that it really is the right answer
just by reading the code.)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(When the correct answer is given in terms of seconds since the
epoch, it's hard to be sure that it really is the right answer
just by reading the code.)
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'bug5346_squashed' into maint-0.2.2</title>
<updated>2012-05-16T16:15:35+00:00</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2012-05-16T16:15:35+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.torproject.org/user/shondoit/tor.git/commit/?id=dd749798a436688cbbe3fc23fe6d4f5041a3e015'/>
<id>dd749798a436688cbbe3fc23fe6d4f5041a3e015</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix month check in parse_http_time, add test</title>
<updated>2012-05-16T16:15:13+00:00</updated>
<author>
<name>Sebastian Hahn</name>
<email>sebastian@torproject.org</email>
</author>
<published>2012-03-09T14:40:44+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.torproject.org/user/shondoit/tor.git/commit/?id=679aa93e23f2c7f2e9c195f08834a7fc8c8d8b29'/>
<id>679aa93e23f2c7f2e9c195f08834a7fc8c8d8b29</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove more dubiosity in struct tm handling. related to bug5346</title>
<updated>2012-05-16T16:15:08+00:00</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2012-03-09T15:24:40+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.torproject.org/user/shondoit/tor.git/commit/?id=801923ac2112d1a54eaf4126800724bea90055eb'/>
<id>801923ac2112d1a54eaf4126800724bea90055eb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>changes file for branch bug5346</title>
<updated>2012-05-16T16:14:48+00:00</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2012-03-09T02:26:48+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.torproject.org/user/shondoit/tor.git/commit/?id=7ae798ac3850008942472a0e9ad4f0c691433c8a'/>
<id>7ae798ac3850008942472a0e9ad4f0c691433c8a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
