Welcome! Log In Create A New Profile

Advanced

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

Jim Radford
May 30, 2013 06:26PM
This is a replacement to my previous patch which actaully includes the buffer length handling.

# HG changeset patch
# User Jim Radford <radford@galvanix.com>
# Date 1369952377 25200
# Node ID 52d7b6082129c90275579fa3667cce3f537cbd09
# Parent 00dbfac67e48a8fe20802287b6fca50950178b8b
SPDY: Allow returning the full status line

diff -r 00dbfac67e48 -r 52d7b6082129 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 15:19:37 2013 -0700
@@ -162,7 +162,9 @@
+ ngx_http_spdy_nv_nsize("version")
+ ngx_http_spdy_nv_vsize("HTTP/1.1")
+ ngx_http_spdy_nv_nsize("status")
- + ngx_http_spdy_nv_vsize("418");
+ + (r->headers_out.status_line.len
+ ? NGX_SPDY_NV_VLEN_SIZE + r->headers_out.status_line.len
+ : ngx_http_spdy_nv_vsize("418"));

clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);

@@ -304,8 +306,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 921 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 371 May 30, 2013 08:22PM

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

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

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

Valentin V. Bartenev 381 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 404 June 10, 2013 07:54AM



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

Online Users

Guests: 136
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