From 9fcd35d0637b64419abbbfa030800c0bdcae30aa Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Wed, 5 Feb 2014 23:04:22 +0900 Subject: [PATCH] Update doc --- lib/includes/nghttp2/nghttp2.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/lib/includes/nghttp2/nghttp2.h b/lib/includes/nghttp2/nghttp2.h index 193b760c..8563a0a0 100644 --- a/lib/includes/nghttp2/nghttp2.h +++ b/lib/includes/nghttp2/nghttp2.h @@ -1,7 +1,7 @@ /* * nghttp2 - HTTP/2.0 C Library * - * Copyright (c) 2013 Tatsuhiro Tsujikawa + * Copyright (c) 2013, 2014 Tatsuhiro Tsujikawa * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the @@ -797,8 +797,8 @@ typedef struct { * @union * * This union includes all frames to pass them to various function - * calls as nghttp2_frame type. The DATA frame is intentionally - * omitted from here. + * calls as nghttp2_frame type. The CONTINUATION frame is omitted from + * here because the library deals with it internally. */ typedef union { /** @@ -2199,6 +2199,9 @@ int nghttp2_nv_compare_name(const nghttp2_nv *lhs, const nghttp2_nv *rhs); * written into |*out| and its length (which is 17) is * assigned to |*outlen|. * + * For ALPN, refer to + * http://tools.ietf.org/html/draft-ietf-tls-applayerprotoneg-04 + * * See http://technotes.googlecode.com/git/nextprotoneg.html for more * details about NPN. *