From d04449eb287148b7b78decc5434fdf66d6091af7 Mon Sep 17 00:00:00 2001 From: Jim Morrison Date: Wed, 15 Feb 2012 13:33:30 -0800 Subject: [PATCH] Document that url should have the query parameters. --- lib/includes/spdylay/spdylay.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/includes/spdylay/spdylay.h b/lib/includes/spdylay/spdylay.h index aa5c86fd..ed9730c5 100644 --- a/lib/includes/spdylay/spdylay.h +++ b/lib/includes/spdylay/spdylay.h @@ -399,9 +399,10 @@ void* spdylay_session_get_stream_user_data(spdylay_session *session, * range of [0, 3]. 0 means the higest priority. |nv| must include * following name/value pairs: * - * "method": HTTP method (e.g., "GET" or "POST") + * "method": HTTP method (e.g., "GET", "POST", "HEAD", etc) * "scheme": URI scheme (e.g., "https") - * "url": Absolute path of this request (e.g., "/foo") + * "url": Absolute path and parameters of this request (e.g., "/foo", + * "/foo;bar;haz?h=j&y=123") * "version": HTTP version (e.g., "HTTP/1.1") * * "host" name/value pair is also required by some hosts.