Welcome! Log In Create A New Profile

Advanced

[PATCH] SPDY: Allow returning the full status line

Jim Radford
May 30, 2013 05:36PM
# HG changeset patch
# User Jim Radford <radford@galvanix.com>
# Date 1369948357 25200
# Node ID 5b75a45ba4deae4b0047357d9bdad7472a83ea3d
# Parent 00dbfac67e48a8fe20802287b6fca50950178b8b
SPDY: Allow returning the full status line

diff -r 00dbfac67e48 -r 5b75a45ba4de src/http/ngx_http_spdy_filter_module.c
--- a/src/http/ngx_http_spdy_filter_module.c Thu May 30 18:23:05 2013 +0400
+++ b/src/http/ngx_http_spdy_filter_module.c Thu May 30 14:12:37 2013 -0700
@@ -304,8 +304,14 @@
last = ngx_http_spdy_nv_write_val(last, "HTTP/1.1");

last = ngx_http_spdy_nv_write_name(last, "status");
- last = ngx_spdy_frame_write_uint16(last, 3);
- last = ngx_sprintf(last, "%03ui", r->headers_out.status);
+ if (r->headers_out.status_line.len) {
+ last = ngx_http_spdy_nv_write_vlen(last, r->headers_out.status_line.len);
+ last = ngx_cpymem(last, r->headers_out.status_line.data,
+ r->headers_out.status_line.len);
+ } else {
+ last = ngx_spdy_frame_write_uint16(last, 3);
+ last = ngx_sprintf(last, "%03ui", r->headers_out.status);
+ }

count = 2;


_______________________________________________
nginx-devel mailing list
nginx-devel@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx-devel
Subject Author Views Posted

[PATCH] SPDY: Allow returning the full status line

Jim Radford 917 May 30, 2013 05:36PM

[PATCH/v2] SPDY: Allow returning the full status line

Jim Radford 376 May 30, 2013 06:26PM

Re: [PATCH/v2] SPDY: Allow returning the full status line

Valentin V. Bartenev 370 May 30, 2013 08:22PM

Re: [PATCH/v2] SPDY: Allow returning the full status line

Valentin V. Bartenev 521 June 05, 2013 10:34AM

Re: [PATCH/v3] SPDY: pass though the full status when available.

Valentin V. Bartenev 380 June 10, 2013 07:04AM

Re: [PATCH/v3] SPDY: pass though the full status when available.

Maxim Dounin 403 June 10, 2013 07:20AM

Re: [PATCH/v3] SPDY: pass though the full status when available.

Valentin V. Bartenev 403 June 10, 2013 07:54AM



Sorry, you do not have permission to post/reply in this forum.

Online Users

Guests: 147
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready