diff --git a/apiref.html b/apiref.html index efdac373..3a84bb92 100644 --- a/apiref.html +++ b/apiref.html @@ -7,7 +7,7 @@ -
(0x02) -The END_SEGMENT flag.
-(0x05) +SETTINGS_MAX_FRAME_SIZE
+(0x06) +SETTINGS_MAX_HEADER_LIST_SIZE
+(3) The HEADERS frame which does not apply for the above categories, -which is analogous to HEADERS in SPDY.
+which is analogous to HEADERS in SPDY. If non-final response +(e.g., status 1xx) is used, final response HEADERS frame will be +categorized here.This option prevents the library from sending WINDOW_UPDATE for a -stream automatically. If this option is set to nonzero, the -library won’t send WINDOW_UPDATE for a stream and the application -is responsible for sending WINDOW_UPDATE using -nghttp2_submit_window_update(). By default, this option is set to -zero.
-This option prevents the library from sending WINDOW_UPDATE for a connection automatically. If this option is set to nonzero, the -library won’t send WINDOW_UPDATE for a connection and the -application is responsible for sending WINDOW_UPDATE with stream ID -0 using nghttp2_submit_window_update(). By default, this option is -set to zero.
+library won’t send WINDOW_UPDATE for DATA until application calls +nghttp2_session_consume() to indicate the consumed amount of +data. Don’t use nghttp2_submit_window_update() for this purpose. +By default, this option is set to zero.Tells the session that size bytes for a stream denoted by +stream_id were consumed by application and are ready to +WINDOW_UPDATE. This function is intended to be used without +automatic window update (see +nghttp2_option_set_no_auto_window_update()).
+This function returns 0 if it succeeds, or one of the following +negative error codes:
+This function does not take ownership of the data_prd. The function copies the members of the data_prd.
This function returns 0 if it succeeds, or one of the following @@ -2896,12 +2913,11 @@ that value as window_size_increment is queued. If the remote endpoint, the local window size is increased by that difference.
If the window_size_increment is negative, the local window size -is decreased by -window_size_increment. If -NGHTTP2_OPT_NO_AUTO_STREAM_WINDOW_UPDATE (or -NGHTTP2_OPT_NO_AUTO_CONNECTION_WINDOW_UPDATE if stream_id -is 0) is not set and the library decided that the WINDOW_UPDATE -should be submitted, then WINDOW_UPDATE is queued with the current -received bytes count.
+is decreased by -window_size_increment. If automatic +WINDOW_UPDATE is enabled +(nghttp2_option_set_no_auto_window_update()), and the library +decided that the WINDOW_UPDATE should be submitted, then +WINDOW_UPDATE is queued with the current received bytes count.If the window_size_increment is 0, the function does nothing and returns 0.
This function returns 0 if it succeeds, or one of the following @@ -2922,7 +2938,7 @@ int nghttp2_submit_altsvc(NGHTTP2_FLAG_NONE.
Only the server can send the ALTSVC frame. If session is initialized as client, this function fails and returns -NGHTTP2_ERR_INVALID_STATE.
+NGHTTP2_ERR_PROTO.If the protocol_id_len is 0, the protocol_id could be NULL.
If the host_len is 0, the host could be NULL.
If the origin_len is 0, the origin could be NULL.
@@ -3061,16 +3077,6 @@ void nghttp2_hd_deflate_del( -Sets the availability of reference set in the deflater. If -no_refset is nonzero, the deflater will first emit “Reference Set -Emptying” in the each subsequent invocation of -nghttp2_hd_deflate_hd() to clear up reference set. By default, -the deflater uses reference set.
-