rfc | title | similarly(score) |
---|---|---|
rfc6901 | JavaScript Object Notation (JSON) Pointer | rfc6902(15.6) rfc4627(12.1) rfc7159(11.6) rfc7158(11.2) rfc7072(9.9) |
rfc6902 | JavaScript Object Notation (JSON) Patch | rfc7396(16.6) rfc7386(15.5) rfc7351(7.8) rfc7159(5.7) rfc5301(5.2) |
rfc6903 | Additional Link Relation Types | rfc6166(7.7)rfc6021(7.4)rfc5566(6.8)[r |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server s1 { | |
stream 1 { | |
rxreq | |
txresp -status 100 -hdr 1 1 -nostrend | |
txresp -status 200 -hdr 2 2 | |
} -run | |
} -start | |
client c1 -connect ${s1_sock} { | |
stream 1 { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -u -r ./nginx-1.9.3/src/http/v2/ngx_http_v2.c ./nginx-1.9.4/src/http/v2/ngx_http_v2.c | |
--- ./nginx-1.9.3/src/http/v2/ngx_http_v2.c 2015-08-16 14:32:49.654689058 +0900 | |
+++ ./nginx-1.9.4/src/http/v2/ngx_http_v2.c 2015-08-20 11:38:03.424522814 +0900 | |
@@ -169,9 +169,10 @@ | |
static ngx_int_t ngx_http_v2_parse_method(ngx_http_request_t *r); | |
static ngx_int_t ngx_http_v2_parse_scheme(ngx_http_request_t *r); | |
static ngx_int_t ngx_http_v2_parse_authority(ngx_http_request_t *r); | |
-static void ngx_http_v2_run_request(ngx_http_request_t *r); | |
static ngx_int_t ngx_http_v2_construct_request_line(ngx_http_request_t *r); | |
-static ngx_int_t ngx_http_v2_concatenate_cookie_header(ngx_http_request_t *r); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
worker_processes 1; | |
events { | |
worker_connections 1024; | |
} | |
http { | |
#include mime.types; | |
default_type application/octet-stream; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -ur ./patched/v1/ngx_http_v2.c ./patched/v2/ngx_http_v2.c | |
--- ./patched/v1/ngx_http_v2.c 2015-08-16 14:30:09.292710298 +0900 | |
+++ ./patched/v2/ngx_http_v2.c 2015-08-16 14:32:58.870572942 +0900 | |
@@ -80,6 +80,8 @@ | |
static void ngx_http_v2_write_handler(ngx_event_t *wev); | |
static void ngx_http_v2_handle_connection(ngx_http_v2_connection_t *h2c); | |
+static u_char *ngx_http_v2_state_proxy_protocol(ngx_http_v2_connection_t *h2c, | |
+ u_char *pos, u_char *end); | |
static u_char *ngx_http_v2_state_preface(ngx_http_v2_connection_t *h2c, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Cookbook Name:: mptcp | |
# Recipe:: default | |
# | |
include_recipe 'apt' | |
apt_repository "multipath-tcp" do | |
uri "http://multipath-tcp.org/repos/apt/debian" | |
distribution "saucy" |