<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/libgit2.git/src/curl_stream.c, branch longpath-printf</title>
<subtitle>github.com: libgit2/libgit2.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/'/>
<entry>
<title>curl: use the most secure auth method for the proxy</title>
<updated>2015-08-06T11:02:35+00:00</updated>
<author>
<name>Carlos Martín Nieto</name>
<email>cmn@dwim.me</email>
</author>
<published>2015-08-06T11:02:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=dc0351893accfc94911cf7067f2b96736675a419'/>
<id>dc0351893accfc94911cf7067f2b96736675a419</id>
<content type='text'>
When curl uses a proxy, it will only use Basic unless we prompt it to
try to use the most secure on it has available.

This is something which git did recently, and it seems like a good idea.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When curl uses a proxy, it will only use Basic unless we prompt it to
try to use the most secure on it has available.

This is something which git did recently, and it seems like a good idea.
</pre>
</div>
</content>
</entry>
<entry>
<title>git_cert: child types use proper base type</title>
<updated>2015-07-10T14:28:33+00:00</updated>
<author>
<name>Edward Thomson</name>
<email>ethomson@edwardthomson.com</email>
</author>
<published>2015-06-29T22:51:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=79698030b090b017aea6d33fb3f02d3fcb046738'/>
<id>79698030b090b017aea6d33fb3f02d3fcb046738</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>curl: remove the encrypted param to the constructor</title>
<updated>2015-06-24T15:26:36+00:00</updated>
<author>
<name>Carlos Martín Nieto</name>
<email>cmn@dwim.me</email>
</author>
<published>2015-06-11T14:57:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=8443f492dd53451c1c74f61c0e51ddb32c5e6ba0'/>
<id>8443f492dd53451c1c74f61c0e51ddb32c5e6ba0</id>
<content type='text'>
We do not want libcurl to perform the TLS negotiation for us, so we
don't need to pass this option.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We do not want libcurl to perform the TLS negotiation for us, so we
don't need to pass this option.
</pre>
</div>
</content>
</entry>
<entry>
<title>curl: extract certificate information</title>
<updated>2015-06-24T15:26:36+00:00</updated>
<author>
<name>Carlos Martín Nieto</name>
<email>cmn@dwim.me</email>
</author>
<published>2015-06-09T17:07:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=cdee630f6f8fc170f21dbcc88248a18a466722a1'/>
<id>cdee630f6f8fc170f21dbcc88248a18a466722a1</id>
<content type='text'>
The information is exposed by curl for some crypto libraries in the form
of name:content strings. We can't do much more than return this
information.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The information is exposed by curl for some crypto libraries in the form
of name:content strings. We can't do much more than return this
information.
</pre>
</div>
</content>
</entry>
<entry>
<title>stream: add support for setting a proxy</title>
<updated>2015-06-24T15:26:36+00:00</updated>
<author>
<name>Carlos Martín Nieto</name>
<email>cmn@dwim.me</email>
</author>
<published>2015-06-07T12:42:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=1376e784c63bc63492a9ba04d5e1f07654deba60'/>
<id>1376e784c63bc63492a9ba04d5e1f07654deba60</id>
<content type='text'>
If the stream claims to support this feature, we can let the transport
set the proxy.

We also set HTTPPROXYTUNNEL option so curl can create a tunnel through
the proxy which lets us create our own TLS session (if needed).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If the stream claims to support this feature, we can let the transport
set the proxy.

We also set HTTPPROXYTUNNEL option so curl can create a tunnel through
the proxy which lets us create our own TLS session (if needed).
</pre>
</div>
</content>
</entry>
<entry>
<title>Implement a curl stream</title>
<updated>2015-06-24T15:25:05+00:00</updated>
<author>
<name>Carlos Martín Nieto</name>
<email>cmn@dwim.me</email>
</author>
<published>2015-06-05T09:02:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/libgit2.git/commit/?id=8dea1c21f5edcf9ff44282134e416e54e6eaf9be'/>
<id>8dea1c21f5edcf9ff44282134e416e54e6eaf9be</id>
<content type='text'>
cURL has a mode in which it acts a lot like our streams, providing send
and recv functions and taking care of the TLS and proxy setup for us.

Implement a new stream which uses libcurl instead of raw sockets or the
TLS libraries directly. This version does not support reporting
certificates or proxies yet.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
cURL has a mode in which it acts a lot like our streams, providing send
and recv functions and taking care of the TLS and proxy setup for us.

Implement a new stream which uses libcurl instead of raw sockets or the
TLS libraries directly. This version does not support reporting
certificates or proxies yet.
</pre>
</div>
</content>
</entry>
</feed>
