nghttp2/lib/nghttp2_frame.h

527 lines
19 KiB
C
Raw Normal View History

/*
2013-07-12 17:19:03 +02:00
* nghttp2 - HTTP/2.0 C Library
*
* Copyright (c) 2012 Tatsuhiro Tsujikawa
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
2013-07-12 17:19:03 +02:00
#ifndef NGHTTP2_FRAME_H
#define NGHTTP2_FRAME_H
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif /* HAVE_CONFIG_H */
2013-07-12 17:19:03 +02:00
#include <nghttp2/nghttp2.h>
2013-07-19 17:08:14 +02:00
#include "nghttp2_hd.h"
2013-07-12 17:19:03 +02:00
#include "nghttp2_buffer.h"
2013-07-15 14:45:59 +02:00
2013-10-27 15:09:10 +01:00
#define NGHTTP2_FRAME_LENGTH_MASK ((1 << 14) - 1)
#define NGHTTP2_STREAM_ID_MASK ((1u << 31) - 1)
#define NGHTTP2_PRIORITY_MASK ((1u << 31) - 1)
#define NGHTTP2_WINDOW_SIZE_INCREMENT_MASK ((1u << 31) - 1)
#define NGHTTP2_SETTINGS_ID_MASK ((1 << 24) - 1)
/* The maximum payload length of a frame */
#define NGHTTP2_MAX_FRAME_LENGTH ((1 << 14) - 1)
2012-01-25 13:35:48 +01:00
2013-07-15 14:45:59 +02:00
/* The maximum length of DATA frame payload. */
2013-07-12 17:19:03 +02:00
#define NGHTTP2_DATA_PAYLOAD_LENGTH 4096
/* The number of bytes of frame header. */
2013-07-12 17:19:03 +02:00
#define NGHTTP2_FRAME_HEAD_LENGTH 8
/* The number of bytes for each SETTINGS entry */
#define NGHTTP2_FRAME_SETTINGS_ENTRY_LENGTH 5
2013-07-15 14:45:59 +02:00
/* Category of frames. */
typedef enum {
2013-07-15 14:45:59 +02:00
/* non-DATA frame */
NGHTTP2_CAT_CTRL,
/* DATA frame */
2013-07-15 14:45:59 +02:00
NGHTTP2_CAT_DATA
2013-07-12 17:19:03 +02:00
} nghttp2_frame_category;
/**
* @struct
*
* The DATA frame used in the library privately. It has the following
* members:
*/
typedef struct {
2013-07-15 14:45:59 +02:00
nghttp2_frame_hd hd;
2013-12-06 15:17:38 +01:00
/**
* The data to be sent for this DATA frame.
*/
nghttp2_data_provider data_prd;
2014-02-07 15:22:17 +01:00
/**
* The number of bytes added as padding. This includes PAD_HIGH and
* PAD_LOW.
*/
size_t padlen;
/**
* The flag to indicate whether EOF was reached or not. Initially
2013-07-15 14:45:59 +02:00
* |eof| is 0. It becomes 1 after all data were read. This is used
* exclusively by nghttp2 library and not in the spec.
*/
uint8_t eof;
} nghttp2_private_data;
2013-07-15 14:45:59 +02:00
int nghttp2_frame_is_data_frame(uint8_t *head);
void nghttp2_frame_pack_frame_hd(uint8_t *buf, const nghttp2_frame_hd *hd);
void nghttp2_frame_unpack_frame_hd(nghttp2_frame_hd *hd, const uint8_t* buf);
/*
* Returns the offset from the HEADERS frame payload where the
* compressed header block starts. The frame payload does not include
* frame header.
*/
size_t nghttp2_frame_headers_payload_nv_offset(nghttp2_headers *frame);
/*
2013-07-15 14:45:59 +02:00
* Packs HEADERS frame |frame| in wire format and store it in
* |*buf_ptr|. The capacity of |*buf_ptr| is |*buflen_ptr| bytes.
2013-07-19 17:08:14 +02:00
* This function expands |*buf_ptr| as necessary to store frame. When
2013-08-28 17:29:25 +02:00
* expansion occurred, memory previously pointed by |*buf_ptr| may
* change. |*buf_ptr| and |*buflen_ptr| are updated accordingly.
*
2012-02-21 15:56:51 +01:00
* frame->hd.length is assigned after length is determined during
* packing process. If payload length is strictly larger than
* NGHTTP2_MAX_FRAME_LENGTH, payload data is still serialized as is,
* but frame->hd.length is set to NGHTTP2_MAX_FRAME_LENGTH and
* NGHTTP2_FLAG_END_HEADERS flag is cleared from frame->hd.flags.
2012-02-21 15:56:51 +01:00
*
* This function returns the size of packed frame if it succeeds, or
* returns one of the following negative error codes:
*
2013-07-19 17:08:14 +02:00
* NGHTTP2_ERR_HEADER_COMP
2012-02-21 15:56:51 +01:00
* The deflate operation failed.
2013-07-12 17:19:03 +02:00
* NGHTTP2_ERR_FRAME_TOO_LARGE
* The length of the frame is too large.
2013-07-12 17:19:03 +02:00
* NGHTTP2_ERR_NOMEM
2012-02-21 15:56:51 +01:00
* Out of memory.
*/
2013-07-15 14:45:59 +02:00
ssize_t nghttp2_frame_pack_headers(uint8_t **buf_ptr,
size_t *buflen_ptr,
nghttp2_headers *frame,
nghttp2_hd_deflater *deflater);
/*
2013-07-15 14:45:59 +02:00
* Unpacks HEADERS frame byte sequence into |frame|. This function
* only unapcks bytes that come before name/value header block.
*
* This function returns 0 if it succeeds or one of the following
* negative error codes:
*
* NGHTTP2_ERR_PROTO
* TODO END_HEADERS flag is not set
*/
int nghttp2_frame_unpack_headers_payload(nghttp2_headers *frame,
const uint8_t *payload,
size_t payloadlen);
/*
2013-07-15 14:45:59 +02:00
* Packs PRIORITY frame |frame| in wire format and store it in
* |*buf_ptr|. The capacity of |*buf_ptr| is |*buflen_ptr|
* length. This function expands |*buf_ptr| as necessary to store
* given |frame|.
*
2012-02-21 15:56:51 +01:00
* This function returns 0 if it succeeds or one of the following
* negative error codes:
*
2013-07-12 17:19:03 +02:00
* NGHTTP2_ERR_NOMEM
2012-02-21 15:56:51 +01:00
* Out of memory.
*/
2013-07-15 14:45:59 +02:00
ssize_t nghttp2_frame_pack_priority(uint8_t **buf_ptr, size_t *buflen_ptr,
nghttp2_priority *frame);
/*
2013-07-15 14:45:59 +02:00
* Unpacks PRIORITY wire format into |frame|.
*/
void nghttp2_frame_unpack_priority_payload(nghttp2_priority *frame,
const uint8_t *payload,
size_t payloadlen);
2012-01-27 11:35:05 +01:00
/*
2013-07-15 14:45:59 +02:00
* Packs RST_STREAM frame |frame| in wire frame format and store it in
* |*buf_ptr|. The capacity of |*buf_ptr| is |*buflen_ptr|
* length. This function expands |*buf_ptr| as necessary to store
2013-07-15 14:45:59 +02:00
* given |frame|. In spdy/2 spec, RST_STREAM wire format is always 16
* bytes long.
2012-02-21 15:56:51 +01:00
*
2013-07-15 14:45:59 +02:00
* This function returns the size of packed frame if it succeeds, or
* returns one of the following negative error codes:
2012-02-21 15:56:51 +01:00
*
2013-07-12 17:19:03 +02:00
* NGHTTP2_ERR_NOMEM
2012-02-21 15:56:51 +01:00
* Out of memory.
2012-01-27 11:35:05 +01:00
*/
2013-07-15 14:45:59 +02:00
ssize_t nghttp2_frame_pack_rst_stream(uint8_t **buf_ptr, size_t *buflen_ptr,
nghttp2_rst_stream *frame);
2012-01-27 11:35:05 +01:00
/*
2013-07-15 14:45:59 +02:00
* Unpacks RST_STREAM frame byte sequence into |frame|.
2012-01-27 11:35:05 +01:00
*/
void nghttp2_frame_unpack_rst_stream_payload(nghttp2_rst_stream *frame,
const uint8_t *payload,
size_t payloadlen);
2012-01-28 11:22:38 +01:00
/*
2013-07-15 14:45:59 +02:00
* Packs SETTINGS frame |frame| in wire format and store it in
* |*buf_ptr|. The capacity of |*buf_ptr| is |*buflen_ptr|
* length. This function expands |*buf_ptr| as necessary to store
2012-02-21 15:56:51 +01:00
* given |frame|.
*
2013-07-15 14:45:59 +02:00
* This function returns the size of packed frame if it succeeds, or
* returns one of the following negative error codes:
2012-02-21 15:56:51 +01:00
*
2013-07-12 17:19:03 +02:00
* NGHTTP2_ERR_NOMEM
2012-02-21 15:56:51 +01:00
* Out of memory.
2012-01-28 11:22:38 +01:00
*/
2013-07-15 14:45:59 +02:00
ssize_t nghttp2_frame_pack_settings(uint8_t **buf_ptr, size_t *buflen_ptr,
nghttp2_settings *frame);
2012-01-28 11:22:38 +01:00
2013-08-03 11:05:14 +02:00
/*
* Packs the |iv|, which includes |niv| entries, in the |buf|,
* assuming the |buf| has at least 8 * |niv| bytes.
*
* Returns the number of bytes written into the |buf|.
*/
size_t nghttp2_frame_pack_settings_payload(uint8_t *buf,
const nghttp2_settings_entry *iv,
2013-08-03 11:05:14 +02:00
size_t niv);
void nghttp2_frame_unpack_settings_entry(nghttp2_settings_entry *iv,
const uint8_t *payload);
2012-01-28 11:22:38 +01:00
/*
* Makes a copy of |iv| in frame->settings.iv. The |niv| is assigned
* to frame->settings.niv.
2012-02-21 15:56:51 +01:00
*
* This function returns 0 if it succeeds or one of the following
* negative error codes:
*
2013-07-12 17:19:03 +02:00
* NGHTTP2_ERR_NOMEM
2012-02-21 15:56:51 +01:00
* Out of memory.
*/
int nghttp2_frame_unpack_settings_payload(nghttp2_settings *frame,
nghttp2_settings_entry *iv,
size_t niv);
2013-08-03 11:05:14 +02:00
/*
* Unpacks SETTINGS payload into |*iv_ptr|. The number of entries are
* assigned to the |*niv_ptr|. This function allocates enough memory
* to store the result in |*iv_ptr|. The caller is responsible to free
* |*iv_ptr| after its use.
*
* This function returns 0 if it succeeds or one of the following
* negative error codes:
*
* NGHTTP2_ERR_NOMEM
* Out of memory.
*/
int nghttp2_frame_unpack_settings_payload2(nghttp2_settings_entry **iv_ptr,
size_t *niv_ptr,
const uint8_t *payload,
size_t payloadlen);
2013-08-03 11:05:14 +02:00
2013-07-24 18:49:05 +02:00
/*
* Packs PUSH_PROMISE frame |frame| in wire format and store it in
* |*buf_ptr|. The capacity of |*buf_ptr| is |*buflen_ptr| bytes.
* This function expands |*buf_ptr| as necessary to store frame. When
2013-08-28 17:29:25 +02:00
* expansion occurred, memory previously pointed by |*buf_ptr| may
* change. |*buf_ptr| and |*buflen_ptr| are updated accordingly.
2013-07-24 18:49:05 +02:00
*
* frame->hd.length is assigned after length is determined during
* packing process. If payload length is strictly larger than
* NGHTTP2_MAX_FRAME_LENGTH, payload data is still serialized as is,
* but frame->hd.length is set to NGHTTP2_MAX_FRAME_LENGTH and
* NGHTTP2_FLAG_END_HEADERS flag is cleared from frame->hd.flags.
2013-07-24 18:49:05 +02:00
*
* This function returns the size of packed frame if it succeeds, or
* returns one of the following negative error codes:
*
* NGHTTP2_ERR_HEADER_COMP
* The deflate operation failed.
* NGHTTP2_ERR_FRAME_TOO_LARGE
* The length of the frame is too large.
* NGHTTP2_ERR_NOMEM
* Out of memory.
*/
ssize_t nghttp2_frame_pack_push_promise(uint8_t **buf_ptr,
size_t *buflen_ptr,
nghttp2_push_promise *frame,
nghttp2_hd_deflater *deflater);
2013-07-24 18:49:05 +02:00
/*
* Unpacks PUSH_PROMISE frame byte sequence into |frame|. This function
* only unapcks bytes that come before name/value header block.
*
* This function returns 0 if it succeeds or one of the following
* negative error codes:
*
* NGHTTP2_ERR_PROTO
* TODO END_HEADERS flag is not set
2013-07-24 18:49:05 +02:00
*/
int nghttp2_frame_unpack_push_promise_payload(nghttp2_push_promise *frame,
const uint8_t *payload,
size_t payloadlen);
/*
2013-07-15 14:45:59 +02:00
* Packs PING frame |frame| in wire format and store it in
* |*buf_ptr|. The capacity of |*buf_ptr| is |*buflen_ptr|
* length. This function expands |*buf_ptr| as necessary to store
* given |frame|.
*
2012-02-21 15:56:51 +01:00
* This function returns 0 if it succeeds or one of the following
* negative error codes:
*
2013-07-12 17:19:03 +02:00
* NGHTTP2_ERR_NOMEM
2012-02-21 15:56:51 +01:00
* Out of memory.
*/
2013-07-15 14:45:59 +02:00
ssize_t nghttp2_frame_pack_ping(uint8_t **buf_ptr, size_t *buflen_ptr,
nghttp2_ping *frame);
2012-01-27 11:35:05 +01:00
/*
2013-07-15 14:45:59 +02:00
* Unpacks PING wire format into |frame|.
*/
void nghttp2_frame_unpack_ping_payload(nghttp2_ping *frame,
const uint8_t *payload,
size_t payloadlen);
/*
2013-07-15 14:45:59 +02:00
* Packs GOAWAY frame |frame | in wire format and store it in
* |*buf_ptr|. The capacity of |*buf_ptr| is |*buflen_ptr|
* length. This function expands |*buf_ptr| as necessary to store
2013-07-15 14:45:59 +02:00
* given |frame|.
2012-02-21 15:56:51 +01:00
*
2013-07-15 14:45:59 +02:00
* This function returns 0 if it succeeds or one of the following
* negative error codes:
2012-02-21 15:56:51 +01:00
*
2013-07-12 17:19:03 +02:00
* NGHTTP2_ERR_NOMEM
2012-02-21 15:56:51 +01:00
* Out of memory.
*/
2013-07-15 14:45:59 +02:00
ssize_t nghttp2_frame_pack_goaway(uint8_t **buf_ptr, size_t *buflen_ptr,
nghttp2_goaway *frame);
/*
2013-07-15 14:45:59 +02:00
* Unpacks GOAWAY wire format into |frame|.
*/
void nghttp2_frame_unpack_goaway_payload(nghttp2_goaway *frame,
const uint8_t *payload,
size_t payloadlen);
/*
* Packs WINDOW_UPDATE frame |frame| in wire frame format and store it
* in |*buf_ptr|. The capacity of |*buf_ptr| is |*buflen_ptr|
* length. This function expands |*buf_ptr| as necessary to store
2013-08-28 17:29:25 +02:00
* given |frame|.
*
* This function returns the size of packed frame if it succeeds, or
* returns one of the following negative error codes:
*
2013-07-12 17:19:03 +02:00
* NGHTTP2_ERR_NOMEM
* Out of memory.
*/
2013-07-12 17:19:03 +02:00
ssize_t nghttp2_frame_pack_window_update(uint8_t **buf_ptr, size_t *buflen_ptr,
nghttp2_window_update *frame);
/*
* Unpacks WINDOW_UPDATE frame byte sequence into |frame|.
*/
void nghttp2_frame_unpack_window_update_payload(nghttp2_window_update *frame,
const uint8_t *payload,
size_t payloadlen);
/*
2013-07-19 17:08:14 +02:00
* Initializes HEADERS frame |frame| with given values. |frame| takes
* ownership of |nva|, so caller must not free it. If |stream_id| is
* not assigned yet, it must be -1.
*/
2013-07-15 14:45:59 +02:00
void nghttp2_frame_headers_init(nghttp2_headers *frame,
uint8_t flags, int32_t stream_id, int32_t pri,
2013-07-19 17:08:14 +02:00
nghttp2_nv *nva, size_t nvlen);
2012-01-27 11:35:05 +01:00
2013-07-15 14:45:59 +02:00
void nghttp2_frame_headers_free(nghttp2_headers *frame);
2012-01-28 11:22:38 +01:00
2013-07-15 14:45:59 +02:00
void nghttp2_frame_priority_init(nghttp2_priority *frame, int32_t stream_id,
int32_t pri);
2013-07-15 14:45:59 +02:00
void nghttp2_frame_priority_free(nghttp2_priority *frame);
2013-07-12 17:19:03 +02:00
void nghttp2_frame_rst_stream_init(nghttp2_rst_stream *frame,
2013-07-15 14:45:59 +02:00
int32_t stream_id,
nghttp2_error_code error_code);
2013-07-12 17:19:03 +02:00
void nghttp2_frame_rst_stream_free(nghttp2_rst_stream *frame);
2013-07-24 18:49:05 +02:00
/*
* Initializes PUSH_PROMISE frame |frame| with given values. |frame|
* takes ownership of |nva|, so caller must not free it.
*/
void nghttp2_frame_push_promise_init(nghttp2_push_promise *frame,
uint8_t flags, int32_t stream_id,
int32_t promised_stream_id,
nghttp2_nv *nva, size_t nvlen);
void nghttp2_frame_push_promise_free(nghttp2_push_promise *frame);
/*
* Initializes SETTINGS frame |frame| with given values. |frame| takes
* ownership of |iv|, so caller must not free it. The |flags| are
2013-07-12 17:19:03 +02:00
* bitwise-OR of one or more of nghttp2_settings_flag.
*/
void nghttp2_frame_settings_init(nghttp2_settings *frame, uint8_t flags,
2013-07-12 17:19:03 +02:00
nghttp2_settings_entry *iv, size_t niv);
2013-07-12 17:19:03 +02:00
void nghttp2_frame_settings_free(nghttp2_settings *frame);
2012-04-05 18:45:39 +02:00
/*
2013-07-15 14:45:59 +02:00
* Initializes PING frame |frame| with given values. If the
* |opqeue_data| is not NULL, it must point to 8 bytes memory region
* of data. The data pointed by |opaque_data| is copied. It can be
* NULL. In this case, 8 bytes NULL is used.
*/
void nghttp2_frame_ping_init(nghttp2_ping *frame, uint8_t flags,
const uint8_t *opque_data);
void nghttp2_frame_ping_free(nghttp2_ping *frame);
/*
* Initializes GOAWAY frame |frame| with given values. On success,
* this function takes ownership of |opaque_data|, so caller must not
* free it. If the |opaque_data_len| is 0, opaque_data could be NULL.
2012-04-05 18:45:39 +02:00
*/
2013-07-15 14:45:59 +02:00
void nghttp2_frame_goaway_init(nghttp2_goaway *frame, int32_t last_stream_id,
nghttp2_error_code error_code,
uint8_t *opaque_data, size_t opaque_data_len);
void nghttp2_frame_goaway_free(nghttp2_goaway *frame);
void nghttp2_frame_window_update_init(nghttp2_window_update *frame,
uint8_t flags,
int32_t stream_id,
int32_t window_size_increment);
2012-04-05 18:45:39 +02:00
2013-07-15 14:45:59 +02:00
void nghttp2_frame_window_update_free(nghttp2_window_update *frame);
2012-04-05 18:45:39 +02:00
2014-01-27 15:28:45 +01:00
void nghttp2_frame_data_init(nghttp2_data *frame, nghttp2_private_data *pdata);
2014-02-07 15:22:17 +01:00
/*
* Returns the number of padding data after application data
* payload. Thus this does not include the PAD_HIGH and PAD_LOW.
*/
size_t nghttp2_frame_data_trail_padlen(nghttp2_data *frame);
void nghttp2_frame_private_data_init(nghttp2_private_data *frame,
uint8_t flags,
int32_t stream_id,
const nghttp2_data_provider *data_prd);
void nghttp2_frame_private_data_free(nghttp2_private_data *frame);
/*
* Makes copy of |iv| and return the copy. The |niv| is the number of
* entries in |iv|. This function returns the pointer to the copy if
* it succeeds, or NULL.
*/
2013-07-12 17:19:03 +02:00
nghttp2_settings_entry* nghttp2_frame_iv_copy(const nghttp2_settings_entry *iv,
size_t niv);
2013-07-19 17:08:14 +02:00
/*
* Sorts the |nva| in ascending order of name and value. If names are
* equivalent, sort them by value.
2013-07-19 17:08:14 +02:00
*/
void nghttp2_nv_array_sort(nghttp2_nv *nva, size_t nvlen);
/*
* Copies name/value pairs from |nva|, which contains |nvlen| pairs,
* to |*nva_ptr|, which is dynamically allocated so that all items can
* be stored.
*
* The |*nva_ptr| must be freed using nghttp2_nv_array_del().
*
* This function returns the number of name/value pairs in |*nva_ptr|,
* or one of the following negative error codes:
*
* NGHTTP2_ERR_NOMEM
* Out of memory.
* NGHTTP2_ERR_INVALID_ARGUMENT
* The length of name or value in |nva| is strictly larger than
* NGHTTP2_MAX_HD_VALUE_LENGTH.
*/
ssize_t nghttp2_nv_array_copy(nghttp2_nv **nva_ptr,
const nghttp2_nv *nva, size_t nvlen);
2013-07-19 09:50:31 +02:00
/*
* Returns nonzero if the name/value pair |a| equals to |b|. The name
* is compared in case-sensitive, because we ensure that this function
* is called after the name is lower-cased.
*/
int nghttp2_nv_equal(const nghttp2_nv *a, const nghttp2_nv *b);
2013-07-19 17:08:14 +02:00
/*
* Frees |nva|.
*/
void nghttp2_nv_array_del(nghttp2_nv *nva);
2013-08-03 11:05:14 +02:00
/*
* Checks that the |iv|, which includes |niv| entries, does not have
2014-02-05 16:23:20 +01:00
* invalid values.
2013-08-03 11:05:14 +02:00
*
* This function returns nonzero if it succeeds, or 0.
*/
2014-02-05 16:23:20 +01:00
int nghttp2_iv_check(const nghttp2_settings_entry *iv, size_t niv);
2013-08-03 11:05:14 +02:00
/*
* Add padding to the payload in the |*buf_ptr| of length
* |*buflen_ptr|. The payload length is given in |payloadlen|. The
* payload must start at offset NGHTTP2_FRAME_HEAD_LENGTH + 2 from
* |*buf_ptr| to account for PAD_HIGH and PAD_LOW. The maximum payload
* allowed is given in the |payloadmax|. The padding will not be made
* more than |payloadmax|. The padding alignment is given in the
* |align|.
*
* The |*flags_ptr| is updated to include NGHTTP2_FLAG_PAD_LOW and
* NGHTTP2_FLAG_PAD_HIGH based on the padding length. The
* |*bufoff_ptr| will have the offset starting the frame header in
* |*buf_ptr|.
*
* The |*buf_ptr| and |*buflen_ptr| may be extended to include padding
* bytes.
*
* This function returns the number of padding added to the payload
* including PAD_HIGH and PAD_LOW if it succeeds, or one of the
* following negative error codes:
*
* NGHTTP2_ERR_NOMEM
* Out of memory.
*/
ssize_t nghttp2_frame_add_pad(uint8_t **buf_ptr, size_t *buflen_ptr,
size_t *bufoff_ptr,
uint8_t *flags_ptr,
size_t payloadlen,
size_t payloadmax,
size_t align);
2013-07-12 17:19:03 +02:00
#endif /* NGHTTP2_FRAME_H */