Renamed FRAME_TOO_LARGE as SPDYLAY_FRAME_TOO_LARGE
This commit is contained in:
parent
21e85281fa
commit
0288bedabb
|
@ -433,7 +433,7 @@ const char* strstatus(uint32_t status_code)
|
||||||
return "STREAM_ALREADY_CLOSED";
|
return "STREAM_ALREADY_CLOSED";
|
||||||
case SPDYLAY_INVALID_CREDENTIALS:
|
case SPDYLAY_INVALID_CREDENTIALS:
|
||||||
return "INVALID_CREDENTIALS";
|
return "INVALID_CREDENTIALS";
|
||||||
case FRAME_TOO_LARGE:
|
case SPDYLAY_FRAME_TOO_LARGE:
|
||||||
return "FRAME_TOO_LARGE";
|
return "FRAME_TOO_LARGE";
|
||||||
default:
|
default:
|
||||||
return "Unknown status code";
|
return "Unknown status code";
|
||||||
|
|
|
@ -404,7 +404,7 @@ typedef enum {
|
||||||
/**
|
/**
|
||||||
* FRAME_TOO_LARGE
|
* FRAME_TOO_LARGE
|
||||||
*/
|
*/
|
||||||
FRAME_TOO_LARGE = 11
|
SPDYLAY_FRAME_TOO_LARGE = 11
|
||||||
} spdylay_status_code;
|
} spdylay_status_code;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue