Renamed FRAME_TOO_LARGE as SPDYLAY_FRAME_TOO_LARGE

This commit is contained in:
Tatsuhiro Tsujikawa 2012-05-09 23:29:33 +09:00
parent 21e85281fa
commit 0288bedabb
2 changed files with 2 additions and 2 deletions

View File

@ -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";

View File

@ -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;
/** /**