Renamed error as error_code in spdylay_on_ctrl_not_send_callback prototype
This commit is contained in:
parent
93593a76ec
commit
42c0e3c758
|
@ -919,12 +919,12 @@ typedef void (*spdylay_on_ctrl_send_callback)
|
||||||
*
|
*
|
||||||
* Callback function invoked after the control frame |frame| of type
|
* Callback function invoked after the control frame |frame| of type
|
||||||
* |type| is not sent because of the error. The error is indicated by
|
* |type| is not sent because of the error. The error is indicated by
|
||||||
* the |error|, which is one of the values defined in
|
* the |error_code|, which is one of the values defined in
|
||||||
* :type:`spdylay_error`.
|
* :type:`spdylay_error`.
|
||||||
*/
|
*/
|
||||||
typedef void (*spdylay_on_ctrl_not_send_callback)
|
typedef void (*spdylay_on_ctrl_not_send_callback)
|
||||||
(spdylay_session *session, spdylay_frame_type type, spdylay_frame *frame,
|
(spdylay_session *session, spdylay_frame_type type, spdylay_frame *frame,
|
||||||
int error, void *user_data);
|
int error_code, void *user_data);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @functypedef
|
* @functypedef
|
||||||
|
|
Loading…
Reference in New Issue