Commit 777263f8 authored by Yedidya Feldblum's avatar Yedidya Feldblum Committed by Facebook Github Bot

Cut unused AsyncSocketException::SASL_HANDSHAKE_TIMEOUT

Summary: [Folly] Cut unused `AsyncSocketException::SASL_HANDSHAKE_TIMEOUT`.

Reviewed By: vitaut

Differential Revision: D19343864

fbshipit-source-id: ed4374bc2b376ff71e592323ed8c37290700e870
parent be83edaf
......@@ -50,8 +50,6 @@ namespace folly {
return "SSL error";
case COULD_NOT_BIND:
return "Could not bind";
case SASL_HANDSHAKE_TIMEOUT:
return "SASL handshake timeout";
case NETWORK_ERROR:
return "Network error";
case EARLY_DATA_REJECTED:
......
......@@ -40,7 +40,7 @@ class FOLLY_EXPORT AsyncSocketException : public std::runtime_error {
INVALID_STATE = 10,
SSL_ERROR = 12,
COULD_NOT_BIND = 13,
SASL_HANDSHAKE_TIMEOUT = 14,
// SASL_HANDSHAKE_TIMEOUT = 14, // no longer used
NETWORK_ERROR = 15,
EARLY_DATA_REJECTED = 16,
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment