• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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,bool urgent,int min_progress_size)25 void grpc_endpoint_read(grpc_endpoint* ep, grpc_slice_buffer* slices,
26                         grpc_closure* cb, bool urgent, int min_progress_size) {
27   ep->vtable->read(ep, slices, cb, urgent, min_progress_size);
28 }
29 
grpc_endpoint_write(grpc_endpoint * ep,grpc_slice_buffer * slices,grpc_closure * cb,void * arg,int max_frame_size)30 void grpc_endpoint_write(grpc_endpoint* ep, grpc_slice_buffer* slices,
31                          grpc_closure* cb, void* arg, int max_frame_size) {
32   ep->vtable->write(ep, slices, cb, arg, max_frame_size);
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_handle why)49 void grpc_endpoint_shutdown(grpc_endpoint* ep, grpc_error_handle 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 absl::string_view grpc_endpoint_get_peer(grpc_endpoint* ep) {
56   return ep->vtable->get_peer(ep);
57 }
58 
grpc_endpoint_get_local_address(grpc_endpoint * ep)59 absl::string_view grpc_endpoint_get_local_address(grpc_endpoint* ep) {
60   return ep->vtable->get_local_address(ep);
61 }
62 
grpc_endpoint_get_fd(grpc_endpoint * ep)63 int grpc_endpoint_get_fd(grpc_endpoint* ep) { return ep->vtable->get_fd(ep); }
64 
grpc_endpoint_can_track_err(grpc_endpoint * ep)65 bool grpc_endpoint_can_track_err(grpc_endpoint* ep) {
66   return ep->vtable->can_track_err(ep);
67 }
68