Skip to content

Commit

Permalink
Rename SERVER_BUSY to CONNECTION_REFUSED
Browse files Browse the repository at this point in the history
  • Loading branch information
maskit committed Jul 14, 2020
1 parent e5fb638 commit 52e57fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions iocore/net/quic/QUICDebugNames.cc
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,8 @@ QUICDebugNames::error_code(uint16_t code)
return "NO_ERROR";
case static_cast<uint16_t>(QUICTransErrorCode::INTERNAL_ERROR):
return "INTERNAL_ERROR";
case static_cast<uint16_t>(QUICTransErrorCode::CONNECTION_REFUSED):
return "CONNECTION_REFUSED";
case static_cast<uint16_t>(QUICTransErrorCode::FLOW_CONTROL_ERROR):
return "FLOW_CONTROL_ERROR";
case static_cast<uint16_t>(QUICTransErrorCode::STREAM_LIMIT_ERROR):
Expand Down
2 changes: 1 addition & 1 deletion iocore/net/quic/QUICTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ enum class QUICErrorClass {
enum class QUICTransErrorCode : uint64_t {
NO_ERROR = 0x00,
INTERNAL_ERROR,
SERVER_BUSY,
CONNECTION_REFUSED,
FLOW_CONTROL_ERROR,
STREAM_LIMIT_ERROR,
STREAM_STATE_ERROR,
Expand Down

0 comments on commit 52e57fe

Please sign in to comment.