Update doc

This commit is contained in:
Tatsuhiro Tsujikawa 2014-02-05 23:04:22 +09:00
parent 1e063ca54b
commit 9fcd35d063
1 changed files with 6 additions and 3 deletions

View File

@ -1,7 +1,7 @@
/* /*
* nghttp2 - HTTP/2.0 C Library * 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 * Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the * a copy of this software and associated documentation files (the
@ -797,8 +797,8 @@ typedef struct {
* @union * @union
* *
* This union includes all frames to pass them to various function * This union includes all frames to pass them to various function
* calls as nghttp2_frame type. The DATA frame is intentionally * calls as nghttp2_frame type. The CONTINUATION frame is omitted from
* omitted from here. * here because the library deals with it internally.
*/ */
typedef union { 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 * written into |*out| and its length (which is 17) is
* assigned to |*outlen|. * 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 * See http://technotes.googlecode.com/git/nextprotoneg.html for more
* details about NPN. * details about NPN.
* *