endpoint.cc 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. #include <grpc/support/port_platform.h>
  19. #include "src/core/lib/iomgr/endpoint.h"
  20. grpc_core::TraceFlag grpc_tcp_trace(false, "tcp");
  21. void grpc_endpoint_read(grpc_endpoint* ep, grpc_slice_buffer* slices,
  22. grpc_closure* cb) {
  23. ep->vtable->read(ep, slices, cb);
  24. }
  25. void grpc_endpoint_write(grpc_endpoint* ep, grpc_slice_buffer* slices,
  26. grpc_closure* cb) {
  27. ep->vtable->write(ep, slices, cb);
  28. }
  29. void grpc_endpoint_add_to_pollset(grpc_endpoint* ep, grpc_pollset* pollset) {
  30. ep->vtable->add_to_pollset(ep, pollset);
  31. }
  32. void grpc_endpoint_add_to_pollset_set(grpc_endpoint* ep,
  33. grpc_pollset_set* pollset_set) {
  34. ep->vtable->add_to_pollset_set(ep, pollset_set);
  35. }
  36. void grpc_endpoint_delete_from_pollset_set(grpc_endpoint* ep,
  37. grpc_pollset_set* pollset_set) {
  38. ep->vtable->delete_from_pollset_set(ep, pollset_set);
  39. }
  40. void grpc_endpoint_shutdown(grpc_endpoint* ep, grpc_error* why) {
  41. ep->vtable->shutdown(ep, why);
  42. }
  43. void grpc_endpoint_destroy(grpc_endpoint* ep) { ep->vtable->destroy(ep); }
  44. char* grpc_endpoint_get_peer(grpc_endpoint* ep) {
  45. return ep->vtable->get_peer(ep);
  46. }
  47. int grpc_endpoint_get_fd(grpc_endpoint* ep) { return ep->vtable->get_fd(ep); }
  48. grpc_resource_user* grpc_endpoint_get_resource_user(grpc_endpoint* ep) {
  49. return ep->vtable->get_resource_user(ep);
  50. }