<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/curl.git, branch bagder/http-buffer-send</title>
<subtitle>github.com: bagder/curl.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/'/>
<entry>
<title>http: fix write counter in Curl_add_buffer_send</title>
<updated>2018-09-07T12:33:22+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2018-09-07T12:31:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=4290cdf75706215d87850c60ceec198ae1a8477c'/>
<id>4290cdf75706215d87850c60ceec198ae1a8477c</id>
<content type='text'>
A problem would occur if the entire buffer couldn't be sent at once and
it could cause an infinte POST loop.

Reported-by: vfloyd6 on github
Fixes #2947
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A problem would occur if the entire buffer couldn't be sent at once and
it could cause an infinte POST loop.

Reported-by: vfloyd6 on github
Fixes #2947
</pre>
</div>
</content>
</entry>
<entry>
<title>upkeep: add a connection upkeep API: curl_easy_conn_upkeep()</title>
<updated>2018-09-07T07:45:29+00:00</updated>
<author>
<name>Max Dymond</name>
<email>max.dymond@metaswitch.com</email>
</author>
<published>2018-04-18T15:40:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=7b655fcbadffc3a0297466f1527e05d4a8efe6b2'/>
<id>7b655fcbadffc3a0297466f1527e05d4a8efe6b2</id>
<content type='text'>
Add functionality so that protocols can do custom keepalive on their
connections, when an external API function is called.

Add docs for the new options in 7.62.0

Closes #1641
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add functionality so that protocols can do custom keepalive on their
connections, when an external API function is called.

Add docs for the new options in 7.62.0

Closes #1641
</pre>
</div>
</content>
</entry>
<entry>
<title>configure: add option to disable automatic OpenSSL config loading</title>
<updated>2018-09-07T07:38:33+00:00</updated>
<author>
<name>Philipp Waehnert</name>
<email>philipp.waehnert@mgm-tp.com</email>
</author>
<published>2018-07-25T09:00:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=6684653b682bae0be75ea62bb473b126923952f1'/>
<id>6684653b682bae0be75ea62bb473b126923952f1</id>
<content type='text'>
Sometimes it may be considered a security risk to load an external
OpenSSL configuration automatically inside curl_global_init(). The
configuration option --disable-ssl-auto-load-config disables this
automatism. The Windows build scripts winbuild/Makefile.vs provide a
corresponding option ENABLE_SSL_AUTO_LOAD_CONFIG accepting a boolean
value.

Setting neither of these options corresponds to the previous behavior
loading the external OpenSSL configuration automatically.

Fixes #2724
Closes #2791
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Sometimes it may be considered a security risk to load an external
OpenSSL configuration automatically inside curl_global_init(). The
configuration option --disable-ssl-auto-load-config disables this
automatism. The Windows build scripts winbuild/Makefile.vs provide a
corresponding option ENABLE_SSL_AUTO_LOAD_CONFIG accepting a boolean
value.

Setting neither of these options corresponds to the previous behavior
loading the external OpenSSL configuration automatically.

Fixes #2724
Closes #2791
</pre>
</div>
</content>
</entry>
<entry>
<title>doh: minor edits to please Coverity</title>
<updated>2018-09-07T07:26:08+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2018-09-07T07:26:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=c515294cec6ee9b72d68e6f13dc1972bcf3fed30'/>
<id>c515294cec6ee9b72d68e6f13dc1972bcf3fed30</id>
<content type='text'>
The gcc typecheck macros and coverity combined made it warn on the 2nd
argument for ERROR_CHECK_SETOPT(). Here's minor rearrange to please it.

Coverity CID 1439115 and CID 1439114.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The gcc typecheck macros and coverity combined made it warn on the 2nd
argument for ERROR_CHECK_SETOPT(). Here's minor rearrange to please it.

Coverity CID 1439115 and CID 1439114.
</pre>
</div>
</content>
</entry>
<entry>
<title>schannel: avoid switch-cases that go to default anyway</title>
<updated>2018-09-07T06:23:00+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2018-09-06T20:53:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=10009222fedec4f664d80ffb508b236fd75da9da'/>
<id>10009222fedec4f664d80ffb508b236fd75da9da</id>
<content type='text'>
SEC_E_APPLICATION_PROTOCOL_MISMATCH isn't defined in some versions of
mingw and would require an ifdef otherwise.

Reported-by: Thomas Glanzmann
Approved-by: Marc Hörsken
Bug: https://curl.haxx.se/mail/lib-2018-09/0020.html
Closes #2950
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
SEC_E_APPLICATION_PROTOCOL_MISMATCH isn't defined in some versions of
mingw and would require an ifdef otherwise.

Reported-by: Thomas Glanzmann
Approved-by: Marc Hörsken
Bug: https://curl.haxx.se/mail/lib-2018-09/0020.html
Closes #2950
</pre>
</div>
</content>
</entry>
<entry>
<title>imap: change from "FETCH" to "UID FETCH"</title>
<updated>2018-09-06T08:57:48+00:00</updated>
<author>
<name>Nicklas Avén</name>
<email>nicklas.aven@jordogskog.no</email>
</author>
<published>2018-07-31T11:12:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=6987fcef657710f800b05dd79ff744087b15c73d'/>
<id>6987fcef657710f800b05dd79ff744087b15c73d</id>
<content type='text'>
... and add "MAILINDEX".

As described in #2789, this is a suggested solution.  Changing UID=xx to
actually get mail with UID xx and add "MAILINDEX" to get a mail with a
special index in the mail box (old behavior).  So MAILINDEX=1 gives the
first non deleted mail in the mail box.

Fixes #2789
Closes #2815
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
... and add "MAILINDEX".

As described in #2789, this is a suggested solution.  Changing UID=xx to
actually get mail with UID xx and add "MAILINDEX" to get a mail with a
special index in the mail box (old behavior).  So MAILINDEX=1 gives the
first non deleted mail in the mail box.

Fixes #2789
Closes #2815
</pre>
</div>
</content>
</entry>
<entry>
<title>CURLOPT_UPLOAD_BUFFERSIZE: set upload buffer size</title>
<updated>2018-09-06T08:53:39+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2018-08-18T14:17:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=2825f46d950ca9b0e269ed8dc6a97c5238a17c30'/>
<id>2825f46d950ca9b0e269ed8dc6a97c5238a17c30</id>
<content type='text'>
This is step 3 of #2888.

Fixes #2888
Closes #2896
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is step 3 of #2888.

Fixes #2888
Closes #2896
</pre>
</div>
</content>
</entry>
<entry>
<title>travis: add the DOH tests to the torture testing</title>
<updated>2018-09-06T07:17:25+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2018-06-20T20:58:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=87fefe5ebfa152386396b8e232c7b5b0609f6f35'/>
<id>87fefe5ebfa152386396b8e232c7b5b0609f6f35</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>DOH: add test case 1650 and 2100</title>
<updated>2018-09-06T07:17:25+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2018-06-19T14:08:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=f2b1a1897537d1915ac2f840b13a8991018755c4'/>
<id>f2b1a1897537d1915ac2f840b13a8991018755c4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>curl: --doh-url added</title>
<updated>2018-09-06T07:17:25+00:00</updated>
<author>
<name>Daniel Stenberg</name>
<email>daniel@haxx.se</email>
</author>
<published>2018-09-06T07:16:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=5ffbb63e4271b7df05f0bfc31d0696745f028e76'/>
<id>5ffbb63e4271b7df05f0bfc31d0696745f028e76</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
