blob: ef0020dc58b665b5a34c2259c34e5d4bd62b1af7 [file] [log] [blame]
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001/*
2 *
Craig Tiller06059952015-02-18 08:34:56 -08003 * Copyright 2015, Google Inc.
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met:
9 *
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following disclaimer
14 * in the documentation and/or other materials provided with the
15 * distribution.
16 * * Neither the name of Google Inc. nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 */
33
34#include "src/core/transport/transport.h"
35#include "src/core/transport/transport_impl.h"
36
37size_t grpc_transport_stream_size(grpc_transport *transport) {
38 return transport->vtable->sizeof_stream;
39}
40
nnoble0c475f02014-12-05 15:37:39 -080041void grpc_transport_goaway(grpc_transport *transport, grpc_status_code status,
42 gpr_slice message) {
43 transport->vtable->goaway(transport, status, message);
44}
45
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080046void grpc_transport_close(grpc_transport *transport) {
47 transport->vtable->close(transport);
48}
49
50void grpc_transport_destroy(grpc_transport *transport) {
51 transport->vtable->destroy(transport);
52}
53
54int grpc_transport_init_stream(grpc_transport *transport, grpc_stream *stream,
55 const void *server_data) {
56 return transport->vtable->init_stream(transport, stream, server_data);
57}
58
59void grpc_transport_send_batch(grpc_transport *transport, grpc_stream *stream,
60 grpc_stream_op *ops, size_t nops, int is_last) {
61 transport->vtable->send_batch(transport, stream, ops, nops, is_last);
62}
63
64void grpc_transport_set_allow_window_updates(grpc_transport *transport,
65 grpc_stream *stream, int allow) {
66 transport->vtable->set_allow_window_updates(transport, stream, allow);
67}
68
ctillerd79b4862014-12-17 16:36:59 -080069void grpc_transport_add_to_pollset(grpc_transport *transport,
70 grpc_pollset *pollset) {
71 transport->vtable->add_to_pollset(transport, pollset);
72}
73
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080074void grpc_transport_destroy_stream(grpc_transport *transport,
75 grpc_stream *stream) {
76 transport->vtable->destroy_stream(transport, stream);
77}
78
79void grpc_transport_abort_stream(grpc_transport *transport, grpc_stream *stream,
80 grpc_status_code status) {
81 transport->vtable->abort_stream(transport, stream, status);
82}
83
84void grpc_transport_ping(grpc_transport *transport, void (*cb)(void *user_data),
85 void *user_data) {
86 transport->vtable->ping(transport, cb, user_data);
87}
88
89void grpc_transport_setup_cancel(grpc_transport_setup *setup) {
90 setup->vtable->cancel(setup);
91}
92
93void grpc_transport_setup_initiate(grpc_transport_setup *setup) {
94 setup->vtable->initiate(setup);
Craig Tiller190d3602015-02-18 09:23:38 -080095}