proxygen
Main Page
Related Pages
Namespaces
Classes
Files
Examples
File List
File Members
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
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
AsyncSocketException.h
folly
—— Concurrent Priority Queue Implementation ——
Definition:
AtomicBitSet.h:29
folly::pushmi::operators::error
requires And< SemiMovable< VN >... > &&SemiMovable< E > auto error(E e)
Definition:
error.h:48
folly::AsyncSocketException
Definition:
AsyncSocketException.h:26
folly::SSLError::INVALID_RENEGOTIATION
folly::SSLError
SSLError
Definition:
SSLErrors.h:22
folly::SSLError::EARLY_WRITE
folly::SSLError::SSL_ERROR
folly::SSLException
Definition:
SSLErrors.h:31
folly::SSLError::EOF_ERROR
folly::SSLException::getSSLError
SSLError getSSLError() const
Definition:
SSLErrors.h:41
folly::SSLError::CLIENT_RENEGOTIATION
folly::SSLException::sslError
SSLError sslError
Definition:
SSLErrors.h:46
folly::SSLError::NETWORK_ERROR
proxygen
folly
folly
io
async
ssl
SSLErrors.h
Generated by
1.8.11