Fix copyright lines
[folly.git] / folly / io / async / ssl / SSLErrors.h
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
18 #include <folly/io/async/AsyncSocketException.h>
19
20 namespace folly {
21
22 enum class SSLError {
23   CLIENT_RENEGOTIATION, // A client tried to renegotiate with this server
24   INVALID_RENEGOTIATION, // We attempted to start a renegotiation.
25   EARLY_WRITE, // Wrote before SSL connection established.
26   SSL_ERROR, // An error related to SSL
27   NETWORK_ERROR, // An error related to the network.
28   EOF_ERROR, // The peer terminated the connection correctly.
29 };
30
31 class SSLException : public folly::AsyncSocketException {
32  public:
33   SSLException(
34       int sslError,
35       unsigned long errError,
36       int sslOperationReturnValue,
37       int errno_copy);
38
39   explicit SSLException(SSLError error);
40
41   SSLError getSSLError() const {
42     return sslError;
43   }
44
45  private:
46   SSLError sslError;
47 };
48 } // namespace folly