]> git.proxmox.com Git - ceph.git/blame - ceph/src/jaegertracing/thrift/lib/cpp/src/thrift/transport/TNonblockingSSLServerSocket.cpp
buildsys: switch source download to quincy
[ceph.git] / ceph / src / jaegertracing / thrift / lib / cpp / src / thrift / transport / TNonblockingSSLServerSocket.cpp
CommitLineData
f67539c2
TL
1/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19
20#include <thrift/transport/TNonblockingSSLServerSocket.h>
21#include <thrift/transport/TSSLSocket.h>
22
23namespace apache {
24namespace thrift {
25namespace transport {
26
27/**
28 * Nonblocking SSL server socket implementation.
29 */
30TNonblockingSSLServerSocket::TNonblockingSSLServerSocket(int port, std::shared_ptr<TSSLSocketFactory> factory)
31 : TNonblockingServerSocket(port), factory_(factory) {
32 factory_->server(true);
33}
34
35TNonblockingSSLServerSocket::TNonblockingSSLServerSocket(const std::string& address,
36 int port,
37 std::shared_ptr<TSSLSocketFactory> factory)
38 : TNonblockingServerSocket(address, port), factory_(factory) {
39 factory_->server(true);
40}
41
42TNonblockingSSLServerSocket::TNonblockingSSLServerSocket(int port,
43 int sendTimeout,
44 int recvTimeout,
45 std::shared_ptr<TSSLSocketFactory> factory)
46 : TNonblockingServerSocket(port, sendTimeout, recvTimeout), factory_(factory) {
47 factory_->server(true);
48}
49
50std::shared_ptr<TSocket> TNonblockingSSLServerSocket::createSocket(THRIFT_SOCKET client) {
51 std::shared_ptr<TSSLSocket> tSSLSocket;
52 tSSLSocket = factory_->createSocket(client);
53 tSSLSocket->setLibeventSafe();
54 return tSSLSocket;
55}
56}
57}
58}