proxygen
SSLErrors.h
Go to the documentation of this file.
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 
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 
32  public:
34  int sslError,
35  unsigned long errError,
36  int sslOperationReturnValue,
37  int errno_copy);
38 
39  explicit SSLException(SSLError error);
40 
42  return sslError;
43  }
44 
45  private:
47 };
48 } // namespace folly
—— Concurrent Priority Queue Implementation ——
Definition: AtomicBitSet.h:29
requires And< SemiMovable< VN >... > &&SemiMovable< E > auto error(E e)
Definition: error.h:48
SSLError
Definition: SSLErrors.h:22
SSLError getSSLError() const
Definition: SSLErrors.h:41
SSLError sslError
Definition: SSLErrors.h:46