<feed xmlns='http://www.w3.org/2005/Atom'>
<title>nginx.git/src, branch release-1.4.2</title>
<subtitle>nginx</subtitle>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/'/>
<entry>
<title>Perl: fixed r-&gt;header_in("Cookie") (ticket #351).</title>
<updated>2013-06-10T10:35:00+00:00</updated>
<author>
<name>Maxim Dounin</name>
<email>mdounin@mdounin.ru</email>
</author>
<published>2013-06-10T10:35:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=4151983735f50de1546850c6d92fe807c2d78b7d'/>
<id>4151983735f50de1546850c6d92fe807c2d78b7d</id>
<content type='text'>
It was broken by X-Forwarded-For related changes in f7fe817c92a2 (1.3.14)
as hh-&gt;offset is no longer 0 for Cookie.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It was broken by X-Forwarded-For related changes in f7fe817c92a2 (1.3.14)
as hh-&gt;offset is no longer 0 for Cookie.
</pre>
</div>
</content>
</entry>
<entry>
<title>Win32: accept_mutex now always disabled (ticket #362).</title>
<updated>2013-05-31T10:59:26+00:00</updated>
<author>
<name>Maxim Dounin</name>
<email>mdounin@mdounin.ru</email>
</author>
<published>2013-05-31T10:59:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=7dc6290ef6e2cd7a3ec787dbb236979e31d3b2c3'/>
<id>7dc6290ef6e2cd7a3ec787dbb236979e31d3b2c3</id>
<content type='text'>
Use of accept mutex on win32 may result in a deadlock if there are multiple
worker_processes configured and the mutex is grabbed by a process which
can't accept connections.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use of accept mutex on win32 may result in a deadlock if there are multiple
worker_processes configured and the mutex is grabbed by a process which
can't accept connections.
</pre>
</div>
</content>
</entry>
<entry>
<title>Upstream: fixed fail_timeout and max_fails &gt; 1.</title>
<updated>2013-05-21T17:47:50+00:00</updated>
<author>
<name>Maxim Dounin</name>
<email>mdounin@mdounin.ru</email>
</author>
<published>2013-05-21T17:47:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=93b61fad8059f106423ad5d2b6372d16de2e01dd'/>
<id>93b61fad8059f106423ad5d2b6372d16de2e01dd</id>
<content type='text'>
Due to peer-&gt;checked always set since rev. c90801720a0c (1.3.0)
by round-robin and least_conn balancers (ip_hash not affected),
the code in ngx_http_upstream_free_round_robin_peer() function
incorrectly reset peer-&gt;fails too often.

Reported by Dmitry Popov,
http://mailman.nginx.org/pipermail/nginx-devel/2013-May/003720.html
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Due to peer-&gt;checked always set since rev. c90801720a0c (1.3.0)
by round-robin and least_conn balancers (ip_hash not affected),
the code in ngx_http_upstream_free_round_robin_peer() function
incorrectly reset peer-&gt;fails too often.

Reported by Dmitry Popov,
http://mailman.nginx.org/pipermail/nginx-devel/2013-May/003720.html
</pre>
</div>
</content>
</entry>
<entry>
<title>OCSP stapling: fix error logging of successful OCSP responses.</title>
<updated>2013-05-16T22:37:13+00:00</updated>
<author>
<name>Piotr Sikora</name>
<email>piotr@cloudflare.com</email>
</author>
<published>2013-05-16T22:37:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=4ca32c31a0f842f2980c2d6a6584d6f680bfe839'/>
<id>4ca32c31a0f842f2980c2d6a6584d6f680bfe839</id>
<content type='text'>
Due to a bad argument list, nginx worker would crash (SIGSEGV) while
trying to log the fact that it received OCSP response with "revoked"
or "unknown" certificate status.

While there, fix similar (but non-crashing) error a few lines above.

Signed-off-by: Piotr Sikora &lt;piotr@cloudflare.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Due to a bad argument list, nginx worker would crash (SIGSEGV) while
trying to log the fact that it received OCSP response with "revoked"
or "unknown" certificate status.

While there, fix similar (but non-crashing) error a few lines above.

Signed-off-by: Piotr Sikora &lt;piotr@cloudflare.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Proxy: $proxy_internal_body_length fixed.</title>
<updated>2013-05-11T17:12:24+00:00</updated>
<author>
<name>Maxim Dounin</name>
<email>mdounin@mdounin.ru</email>
</author>
<published>2013-05-11T17:12:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=307b61771284a76d431e253dfcc9c1f7ec73e94c'/>
<id>307b61771284a76d431e253dfcc9c1f7ec73e94c</id>
<content type='text'>
The $proxy_internal_body_length value might change during request lifetime,
notably if proxy_set_body used, and use of a cached value might result in
incorrect upstream requests.

Patch by Lanshun Zhou.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The $proxy_internal_body_length value might change during request lifetime,
notably if proxy_set_body used, and use of a cached value might result in
incorrect upstream requests.

Patch by Lanshun Zhou.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed build with --with-mail_ssl_module.</title>
<updated>2013-05-11T14:49:30+00:00</updated>
<author>
<name>Maxim Dounin</name>
<email>mdounin@mdounin.ru</email>
</author>
<published>2013-05-11T14:49:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=abef0366e9bb7641058e4d8ab2a495ccf6ff5028'/>
<id>abef0366e9bb7641058e4d8ab2a495ccf6ff5028</id>
<content type='text'>
If nginx was compiled without --with-http_ssl_module, but with some
other module which uses OpenSSL (e.g. --with-mail_ssl_module), insufficient
preprocessor check resulted in build failure.  The problem was introduced
by e0a3714a36f8 (1.3.14).

Reported by Roman Arutyunyan.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If nginx was compiled without --with-http_ssl_module, but with some
other module which uses OpenSSL (e.g. --with-mail_ssl_module), insufficient
preprocessor check resulted in build failure.  The problem was introduced
by e0a3714a36f8 (1.3.14).

Reported by Roman Arutyunyan.
</pre>
</div>
</content>
</entry>
<entry>
<title>Perl: extra "return" removed.</title>
<updated>2013-05-11T14:48:56+00:00</updated>
<author>
<name>Maxim Dounin</name>
<email>mdounin@mdounin.ru</email>
</author>
<published>2013-05-11T14:48:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=1901e10d199a321ccf539fd13198746a1e6eeb10'/>
<id>1901e10d199a321ccf539fd13198746a1e6eeb10</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Version bump.</title>
<updated>2013-07-12T10:24:07+00:00</updated>
<author>
<name>Maxim Dounin</name>
<email>mdounin@mdounin.ru</email>
</author>
<published>2013-07-12T10:24:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=8d096180d2a7a807a4ec54dfea90d015ffe6158a'/>
<id>8d096180d2a7a807a4ec54dfea90d015ffe6158a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed chunk size parsing.</title>
<updated>2013-05-06T10:03:24+00:00</updated>
<author>
<name>Maxim Dounin</name>
<email>mdounin@mdounin.ru</email>
</author>
<published>2013-05-06T10:03:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=4997de8005630664ab35f27140e2077e818b21a7'/>
<id>4997de8005630664ab35f27140e2077e818b21a7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Version bump.</title>
<updated>2013-05-06T10:18:46+00:00</updated>
<author>
<name>Maxim Dounin</name>
<email>mdounin@mdounin.ru</email>
</author>
<published>2013-05-06T10:18:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sigsegv.uk/nginx.git/commit/?id=243ecc69cd69b06034d2a9e8024f56c862d349de'/>
<id>243ecc69cd69b06034d2a9e8024f56c862d349de</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
