SSLErrors.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * Copyright 2016-present Facebook, Inc.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #pragma once
  17. #include <folly/io/async/AsyncSocketException.h>
  18. namespace folly {
  19. enum class SSLError {
  20. CLIENT_RENEGOTIATION, // A client tried to renegotiate with this server
  21. INVALID_RENEGOTIATION, // We attempted to start a renegotiation.
  22. EARLY_WRITE, // Wrote before SSL connection established.
  23. SSL_ERROR, // An error related to SSL
  24. NETWORK_ERROR, // An error related to the network.
  25. EOF_ERROR, // The peer terminated the connection correctly.
  26. };
  27. class SSLException : public folly::AsyncSocketException {
  28. public:
  29. SSLException(
  30. int sslError,
  31. unsigned long errError,
  32. int sslOperationReturnValue,
  33. int errno_copy);
  34. explicit SSLException(SSLError error);
  35. SSLError getSSLError() const {
  36. return sslError;
  37. }
  38. private:
  39. SSLError sslError;
  40. };
  41. } // namespace folly