]> git.proxmox.com Git - ceph.git/blob - ceph/src/jaegertracing/thrift/lib/c_glib/src/thrift/c_glib/transport/thrift_server_transport.c
buildsys: switch source download to quincy
[ceph.git] / ceph / src / jaegertracing / thrift / lib / c_glib / src / thrift / c_glib / transport / thrift_server_transport.c
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/c_glib/thrift.h>
21 #include <thrift/c_glib/transport/thrift_transport.h>
22 #include <thrift/c_glib/transport/thrift_server_transport.h>
23
24 G_DEFINE_ABSTRACT_TYPE(ThriftServerTransport, thrift_server_transport, G_TYPE_OBJECT)
25
26 /* base initializer for the server transport interface */
27 static void
28 thrift_server_transport_class_init (ThriftServerTransportClass *c)
29 {
30 c->listen = thrift_server_transport_listen;
31 c->accept = thrift_server_transport_accept;
32 c->close = thrift_server_transport_close;
33 }
34
35 static void
36 thrift_server_transport_init (ThriftServerTransport *transport)
37 {
38 THRIFT_UNUSED_VAR (transport);
39 }
40
41 gboolean
42 thrift_server_transport_listen (ThriftServerTransport *transport,
43 GError **error)
44 {
45 return THRIFT_SERVER_TRANSPORT_GET_CLASS (transport)->listen (transport,
46 error);
47 }
48
49 ThriftTransport *
50 thrift_server_transport_accept (ThriftServerTransport *transport,
51 GError **error)
52 {
53 return THRIFT_SERVER_TRANSPORT_GET_CLASS (transport)->accept (transport,
54 error);
55 }
56
57 gboolean
58 thrift_server_transport_close (ThriftServerTransport *transport, GError **error)
59 {
60 return THRIFT_SERVER_TRANSPORT_GET_CLASS (transport)->close (transport,
61 error);
62 }