1 /*
2 *
3 * Copyright 2015 gRPC authors.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 */
18
19 #include <grpc/support/port_platform.h>
20
21 #include "src/core/lib/iomgr/endpoint.h"
22
23 grpc_core::TraceFlag grpc_tcp_trace(false, "tcp");
24
grpc_endpoint_read(grpc_endpoint * ep,grpc_slice_buffer * slices,grpc_closure * cb)25 void grpc_endpoint_read(grpc_endpoint* ep, grpc_slice_buffer* slices,
26 grpc_closure* cb) {
27 ep->vtable->read(ep, slices, cb);
28 }
29
grpc_endpoint_write(grpc_endpoint * ep,grpc_slice_buffer * slices,grpc_closure * cb,void * arg)30 void grpc_endpoint_write(grpc_endpoint* ep, grpc_slice_buffer* slices,
31 grpc_closure* cb, void* arg) {
32 ep->vtable->write(ep, slices, cb, arg);
33 }
34
grpc_endpoint_add_to_pollset(grpc_endpoint * ep,grpc_pollset * pollset)35 void grpc_endpoint_add_to_pollset(grpc_endpoint* ep, grpc_pollset* pollset) {
36 ep->vtable->add_to_pollset(ep, pollset);
37 }
38
grpc_endpoint_add_to_pollset_set(grpc_endpoint * ep,grpc_pollset_set * pollset_set)39 void grpc_endpoint_add_to_pollset_set(grpc_endpoint* ep,
40 grpc_pollset_set* pollset_set) {
41 ep->vtable->add_to_pollset_set(ep, pollset_set);
42 }
43
grpc_endpoint_delete_from_pollset_set(grpc_endpoint * ep,grpc_pollset_set * pollset_set)44 void grpc_endpoint_delete_from_pollset_set(grpc_endpoint* ep,
45 grpc_pollset_set* pollset_set) {
46 ep->vtable->delete_from_pollset_set(ep, pollset_set);
47 }
48
grpc_endpoint_shutdown(grpc_endpoint * ep,grpc_error * why)49 void grpc_endpoint_shutdown(grpc_endpoint* ep, grpc_error* why) {
50 ep->vtable->shutdown(ep, why);
51 }
52
grpc_endpoint_destroy(grpc_endpoint * ep)53 void grpc_endpoint_destroy(grpc_endpoint* ep) { ep->vtable->destroy(ep); }
54
grpc_endpoint_get_peer(grpc_endpoint * ep)55 char* grpc_endpoint_get_peer(grpc_endpoint* ep) {
56 return ep->vtable->get_peer(ep);
57 }
58
grpc_endpoint_get_fd(grpc_endpoint * ep)59 int grpc_endpoint_get_fd(grpc_endpoint* ep) { return ep->vtable->get_fd(ep); }
60
grpc_endpoint_get_resource_user(grpc_endpoint * ep)61 grpc_resource_user* grpc_endpoint_get_resource_user(grpc_endpoint* ep) {
62 return ep->vtable->get_resource_user(ep);
63 }
64