]> git.proxmox.com Git - ceph.git/blob - ceph/src/jaegertracing/thrift/lib/cpp/src/thrift/transport/TSSLServerSocket.cpp
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / jaegertracing / thrift / lib / cpp / src / thrift / transport / TSSLServerSocket.cpp
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/thrift_export.h>
21 #include <thrift/transport/TSSLServerSocket.h>
22 #include <thrift/transport/TSSLSocket.h>
23
24 namespace apache {
25 namespace thrift {
26 namespace transport {
27
28 /**
29 * SSL server socket implementation.
30 */
31 TSSLServerSocket::TSSLServerSocket(int port, std::shared_ptr<TSSLSocketFactory> factory)
32 : TServerSocket(port), factory_(factory) {
33 factory_->server(true);
34 }
35
36 TSSLServerSocket::TSSLServerSocket(const std::string& address,
37 int port,
38 std::shared_ptr<TSSLSocketFactory> factory)
39 : TServerSocket(address, port), factory_(factory) {
40 factory_->server(true);
41 }
42
43 TSSLServerSocket::TSSLServerSocket(int port,
44 int sendTimeout,
45 int recvTimeout,
46 std::shared_ptr<TSSLSocketFactory> factory)
47 : TServerSocket(port, sendTimeout, recvTimeout), factory_(factory) {
48 factory_->server(true);
49 }
50
51 std::shared_ptr<TSocket> TSSLServerSocket::createSocket(THRIFT_SOCKET client) {
52 if (interruptableChildren_) {
53 return factory_->createSocket(client, pChildInterruptSockReader_);
54
55 } else {
56 return factory_->createSocket(client);
57 }
58 }
59 }
60 }
61 }