blob: 8e8db9f7b45b0de81f7187dd50005805c7ed7072 [file] [log] [blame]
murgatroid999030c812016-09-16 13:25:08 -07001/*
2 *
3 * Copyright 2016, Google Inc.
4 * 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/lib/iomgr/port.h"
35
36#ifdef GRPC_UV
37
38#include <limits.h>
39#include <string.h>
40
murgatroid99e2672c92016-11-09 15:12:22 -080041#include <grpc/slice_buffer.h>
42
murgatroid999030c812016-09-16 13:25:08 -070043#include <grpc/support/alloc.h>
44#include <grpc/support/log.h>
murgatroid999030c812016-09-16 13:25:08 -070045#include <grpc/support/string_util.h>
46
47#include "src/core/lib/iomgr/error.h"
48#include "src/core/lib/iomgr/network_status_tracker.h"
murgatroid99e2672c92016-11-09 15:12:22 -080049#include "src/core/lib/iomgr/resource_quota.h"
murgatroid999030c812016-09-16 13:25:08 -070050#include "src/core/lib/iomgr/tcp_uv.h"
Craig Tiller7c70b6c2017-01-23 07:48:42 -080051#include "src/core/lib/slice/slice_internal.h"
murgatroid99e2672c92016-11-09 15:12:22 -080052#include "src/core/lib/slice/slice_string_helpers.h"
murgatroid999030c812016-09-16 13:25:08 -070053#include "src/core/lib/support/string.h"
54
55int grpc_tcp_trace = 0;
56
57typedef struct {
58 grpc_endpoint base;
59 gpr_refcount refcount;
60
murgatroid9969259d42016-10-31 14:34:10 -070061 uv_write_t write_req;
62 uv_shutdown_t shutdown_req;
63
murgatroid999030c812016-09-16 13:25:08 -070064 uv_tcp_t *handle;
65
66 grpc_closure *read_cb;
67 grpc_closure *write_cb;
68
murgatroid99e2672c92016-11-09 15:12:22 -080069 grpc_slice read_slice;
70 grpc_slice_buffer *read_slices;
71 grpc_slice_buffer *write_slices;
murgatroid999030c812016-09-16 13:25:08 -070072 uv_buf_t *write_buffers;
73
murgatroid99e2672c92016-11-09 15:12:22 -080074 grpc_resource_user *resource_user;
murgatroid9969259d42016-10-31 14:34:10 -070075
murgatroid992c287ca2016-10-07 09:55:35 -070076 bool shutting_down;
murgatroid9969259d42016-10-31 14:34:10 -070077
murgatroid999030c812016-09-16 13:25:08 -070078 char *peer_string;
79 grpc_pollset *pollset;
80} grpc_tcp;
81
murgatroid99e2672c92016-11-09 15:12:22 -080082static void tcp_free(grpc_exec_ctx *exec_ctx, grpc_tcp *tcp) {
83 grpc_resource_user_unref(exec_ctx, tcp->resource_user);
murgatroid9969259d42016-10-31 14:34:10 -070084 gpr_free(tcp);
murgatroid9969259d42016-10-31 14:34:10 -070085}
murgatroid999030c812016-09-16 13:25:08 -070086
87/*#define GRPC_TCP_REFCOUNT_DEBUG*/
88#ifdef GRPC_TCP_REFCOUNT_DEBUG
murgatroid992e012342016-11-10 18:24:08 -080089#define TCP_UNREF(exec_ctx, tcp, reason) \
90 tcp_unref((exec_ctx), (tcp), (reason), __FILE__, __LINE__)
91#define TCP_REF(tcp, reason) \
92 tcp_ref((exec_ctx), (tcp), (reason), __FILE__, __LINE__)
93static void tcp_unref(grpc_exec_ctx *exec_ctx, grpc_tcp *tcp,
94 const char *reason, const char *file, int line) {
murgatroid999030c812016-09-16 13:25:08 -070095 gpr_log(file, line, GPR_LOG_SEVERITY_DEBUG, "TCP unref %p : %s %d -> %d", tcp,
96 reason, tcp->refcount.count, tcp->refcount.count - 1);
97 if (gpr_unref(&tcp->refcount)) {
murgatroid99e2672c92016-11-09 15:12:22 -080098 tcp_free(exec_ctx, tcp);
murgatroid999030c812016-09-16 13:25:08 -070099 }
100}
101
102static void tcp_ref(grpc_tcp *tcp, const char *reason, const char *file,
103 int line) {
104 gpr_log(file, line, GPR_LOG_SEVERITY_DEBUG, "TCP ref %p : %s %d -> %d", tcp,
105 reason, tcp->refcount.count, tcp->refcount.count + 1);
106 gpr_ref(&tcp->refcount);
107}
108#else
murgatroid99e2672c92016-11-09 15:12:22 -0800109#define TCP_UNREF(exec_ctx, tcp, reason) tcp_unref((exec_ctx), (tcp))
murgatroid999030c812016-09-16 13:25:08 -0700110#define TCP_REF(tcp, reason) tcp_ref((tcp))
murgatroid99e2672c92016-11-09 15:12:22 -0800111static void tcp_unref(grpc_exec_ctx *exec_ctx, grpc_tcp *tcp) {
murgatroid999030c812016-09-16 13:25:08 -0700112 if (gpr_unref(&tcp->refcount)) {
murgatroid99e2672c92016-11-09 15:12:22 -0800113 tcp_free(exec_ctx, tcp);
murgatroid999030c812016-09-16 13:25:08 -0700114 }
115}
116
117static void tcp_ref(grpc_tcp *tcp) { gpr_ref(&tcp->refcount); }
118#endif
119
murgatroid991191b722017-02-08 11:56:52 -0800120static void uv_close_callback(uv_handle_t *handle) {
121 grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT;
122 grpc_tcp *tcp = handle->data;
123 TCP_UNREF(&exec_ctx, tcp, "destroy");
124 grpc_exec_ctx_finish(&exec_ctx);
125}
126
murgatroid99dedb9232016-09-26 13:54:04 -0700127static void alloc_uv_buf(uv_handle_t *handle, size_t suggested_size,
128 uv_buf_t *buf) {
murgatroid9969259d42016-10-31 14:34:10 -0700129 grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT;
murgatroid999030c812016-09-16 13:25:08 -0700130 grpc_tcp *tcp = handle->data;
131 (void)suggested_size;
murgatroid9969259d42016-10-31 14:34:10 -0700132 tcp->read_slice = grpc_resource_user_slice_malloc(
murgatroid99e2672c92016-11-09 15:12:22 -0800133 &exec_ctx, tcp->resource_user, GRPC_TCP_DEFAULT_READ_SLICE_SIZE);
Craig Tiller618e67d2016-10-26 21:08:10 -0700134 buf->base = (char *)GRPC_SLICE_START_PTR(tcp->read_slice);
135 buf->len = GRPC_SLICE_LENGTH(tcp->read_slice);
murgatroid9969259d42016-10-31 14:34:10 -0700136 grpc_exec_ctx_finish(&exec_ctx);
murgatroid999030c812016-09-16 13:25:08 -0700137}
138
murgatroid99dedb9232016-09-26 13:54:04 -0700139static void read_callback(uv_stream_t *stream, ssize_t nread,
140 const uv_buf_t *buf) {
murgatroid99e2672c92016-11-09 15:12:22 -0800141 grpc_slice sub;
murgatroid999030c812016-09-16 13:25:08 -0700142 grpc_error *error;
143 grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT;
144 grpc_tcp *tcp = stream->data;
145 grpc_closure *cb = tcp->read_cb;
146 if (nread == 0) {
147 // Nothing happened. Wait for the next callback
148 return;
149 }
murgatroid99e2672c92016-11-09 15:12:22 -0800150 TCP_UNREF(&exec_ctx, tcp, "read");
murgatroid999030c812016-09-16 13:25:08 -0700151 tcp->read_cb = NULL;
152 // TODO(murgatroid99): figure out what the return value here means
153 uv_read_stop(stream);
154 if (nread == UV_EOF) {
ncteisen4b36a3d2017-03-13 19:08:06 -0700155 error = GRPC_ERROR_CREATE_FROM_STATIC_STRING("EOF");
murgatroid999030c812016-09-16 13:25:08 -0700156 } else if (nread > 0) {
157 // Successful read
murgatroid99e2672c92016-11-09 15:12:22 -0800158 sub = grpc_slice_sub_no_ref(tcp->read_slice, 0, (size_t)nread);
159 grpc_slice_buffer_add(tcp->read_slices, sub);
murgatroid999030c812016-09-16 13:25:08 -0700160 error = GRPC_ERROR_NONE;
161 if (grpc_tcp_trace) {
162 size_t i;
163 const char *str = grpc_error_string(error);
164 gpr_log(GPR_DEBUG, "read: error=%s", str);
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800165
murgatroid999030c812016-09-16 13:25:08 -0700166 for (i = 0; i < tcp->read_slices->count; i++) {
murgatroid99e2672c92016-11-09 15:12:22 -0800167 char *dump = grpc_dump_slice(tcp->read_slices->slices[i],
murgatroid992e012342016-11-10 18:24:08 -0800168 GPR_DUMP_HEX | GPR_DUMP_ASCII);
murgatroid99dedb9232016-09-26 13:54:04 -0700169 gpr_log(GPR_DEBUG, "READ %p (peer=%s): %s", tcp, tcp->peer_string,
170 dump);
murgatroid999030c812016-09-16 13:25:08 -0700171 gpr_free(dump);
172 }
173 }
174 } else {
175 // nread < 0: Error
ncteisen4b36a3d2017-03-13 19:08:06 -0700176 error = GRPC_ERROR_CREATE_FROM_STATIC_STRING("TCP Read failed");
murgatroid999030c812016-09-16 13:25:08 -0700177 }
Craig Tiller91031da2016-12-28 15:44:25 -0800178 grpc_closure_sched(&exec_ctx, cb, error);
murgatroid999030c812016-09-16 13:25:08 -0700179 grpc_exec_ctx_finish(&exec_ctx);
180}
181
182static void uv_endpoint_read(grpc_exec_ctx *exec_ctx, grpc_endpoint *ep,
murgatroid99e2672c92016-11-09 15:12:22 -0800183 grpc_slice_buffer *read_slices, grpc_closure *cb) {
murgatroid999030c812016-09-16 13:25:08 -0700184 grpc_tcp *tcp = (grpc_tcp *)ep;
185 int status;
186 grpc_error *error = GRPC_ERROR_NONE;
187 GPR_ASSERT(tcp->read_cb == NULL);
188 tcp->read_cb = cb;
189 tcp->read_slices = read_slices;
Craig Tillerab7b2d82016-12-07 07:26:34 -0800190 grpc_slice_buffer_reset_and_unref_internal(exec_ctx, read_slices);
murgatroid999030c812016-09-16 13:25:08 -0700191 TCP_REF(tcp, "read");
192 // TODO(murgatroid99): figure out what the return value here means
murgatroid99dedb9232016-09-26 13:54:04 -0700193 status =
194 uv_read_start((uv_stream_t *)tcp->handle, alloc_uv_buf, read_callback);
murgatroid999030c812016-09-16 13:25:08 -0700195 if (status != 0) {
ncteisen4b36a3d2017-03-13 19:08:06 -0700196 error = GRPC_ERROR_CREATE_FROM_STATIC_STRING("TCP Read failed at start");
murgatroid99dedb9232016-09-26 13:54:04 -0700197 error =
ncteisen4b36a3d2017-03-13 19:08:06 -0700198 grpc_error_set_str(error, GRPC_ERROR_STR_OS_ERROR,
199 grpc_slice_from_static_string(uv_strerror(status)));
Craig Tiller91031da2016-12-28 15:44:25 -0800200 grpc_closure_sched(exec_ctx, cb, error);
murgatroid999030c812016-09-16 13:25:08 -0700201 }
202 if (grpc_tcp_trace) {
203 const char *str = grpc_error_string(error);
204 gpr_log(GPR_DEBUG, "Initiating read on %p: error=%s", tcp, str);
205 }
206}
207
208static void write_callback(uv_write_t *req, int status) {
209 grpc_tcp *tcp = req->data;
210 grpc_error *error;
211 grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT;
212 grpc_closure *cb = tcp->write_cb;
213 tcp->write_cb = NULL;
murgatroid99e2672c92016-11-09 15:12:22 -0800214 TCP_UNREF(&exec_ctx, tcp, "write");
murgatroid999030c812016-09-16 13:25:08 -0700215 if (status == 0) {
216 error = GRPC_ERROR_NONE;
217 } else {
ncteisen4b36a3d2017-03-13 19:08:06 -0700218 error = GRPC_ERROR_CREATE_FROM_STATIC_STRING("TCP Write failed");
murgatroid999030c812016-09-16 13:25:08 -0700219 }
220 if (grpc_tcp_trace) {
221 const char *str = grpc_error_string(error);
222 gpr_log(GPR_DEBUG, "write complete on %p: error=%s", tcp, str);
223 }
224 gpr_free(tcp->write_buffers);
murgatroid99e2672c92016-11-09 15:12:22 -0800225 grpc_resource_user_free(&exec_ctx, tcp->resource_user,
murgatroid9969259d42016-10-31 14:34:10 -0700226 sizeof(uv_buf_t) * tcp->write_slices->count);
Craig Tiller91031da2016-12-28 15:44:25 -0800227 grpc_closure_sched(&exec_ctx, cb, error);
murgatroid999030c812016-09-16 13:25:08 -0700228 grpc_exec_ctx_finish(&exec_ctx);
229}
230
231static void uv_endpoint_write(grpc_exec_ctx *exec_ctx, grpc_endpoint *ep,
murgatroid99e2672c92016-11-09 15:12:22 -0800232 grpc_slice_buffer *write_slices,
murgatroid999030c812016-09-16 13:25:08 -0700233 grpc_closure *cb) {
234 grpc_tcp *tcp = (grpc_tcp *)ep;
235 uv_buf_t *buffers;
236 unsigned int buffer_count;
237 unsigned int i;
murgatroid99e2672c92016-11-09 15:12:22 -0800238 grpc_slice *slice;
murgatroid999030c812016-09-16 13:25:08 -0700239 uv_write_t *write_req;
240
241 if (grpc_tcp_trace) {
murgatroid99c36f6ea2016-10-03 09:24:09 -0700242 size_t j;
murgatroid999030c812016-09-16 13:25:08 -0700243
murgatroid99c36f6ea2016-10-03 09:24:09 -0700244 for (j = 0; j < write_slices->count; j++) {
murgatroid99e2672c92016-11-09 15:12:22 -0800245 char *data = grpc_dump_slice(write_slices->slices[j],
murgatroid992e012342016-11-10 18:24:08 -0800246 GPR_DUMP_HEX | GPR_DUMP_ASCII);
murgatroid999030c812016-09-16 13:25:08 -0700247 gpr_log(GPR_DEBUG, "WRITE %p (peer=%s): %s", tcp, tcp->peer_string, data);
248 gpr_free(data);
249 }
250 }
251
252 if (tcp->shutting_down) {
ncteisen4b36a3d2017-03-13 19:08:06 -0700253 grpc_closure_sched(exec_ctx, cb, GRPC_ERROR_CREATE_FROM_STATIC_STRING(
254 "TCP socket is shutting down"));
murgatroid999030c812016-09-16 13:25:08 -0700255 return;
256 }
257
258 GPR_ASSERT(tcp->write_cb == NULL);
259 tcp->write_slices = write_slices;
260 GPR_ASSERT(tcp->write_slices->count <= UINT_MAX);
261 if (tcp->write_slices->count == 0) {
262 // No slices means we don't have to do anything,
263 // and libuv doesn't like empty writes
Craig Tiller91031da2016-12-28 15:44:25 -0800264 grpc_closure_sched(exec_ctx, cb, GRPC_ERROR_NONE);
murgatroid999030c812016-09-16 13:25:08 -0700265 return;
266 }
267
268 tcp->write_cb = cb;
269 buffer_count = (unsigned int)tcp->write_slices->count;
270 buffers = gpr_malloc(sizeof(uv_buf_t) * buffer_count);
murgatroid99e2672c92016-11-09 15:12:22 -0800271 grpc_resource_user_alloc(exec_ctx, tcp->resource_user,
murgatroid9969259d42016-10-31 14:34:10 -0700272 sizeof(uv_buf_t) * buffer_count, NULL);
murgatroid999030c812016-09-16 13:25:08 -0700273 for (i = 0; i < buffer_count; i++) {
274 slice = &tcp->write_slices->slices[i];
Craig Tiller618e67d2016-10-26 21:08:10 -0700275 buffers[i].base = (char *)GRPC_SLICE_START_PTR(*slice);
276 buffers[i].len = GRPC_SLICE_LENGTH(*slice);
murgatroid999030c812016-09-16 13:25:08 -0700277 }
murgatroid9969259d42016-10-31 14:34:10 -0700278 tcp->write_buffers = buffers;
279 write_req = &tcp->write_req;
murgatroid999030c812016-09-16 13:25:08 -0700280 write_req->data = tcp;
281 TCP_REF(tcp, "write");
282 // TODO(murgatroid99): figure out what the return value here means
283 uv_write(write_req, (uv_stream_t *)tcp->handle, buffers, buffer_count,
284 write_callback);
285}
286
287static void uv_add_to_pollset(grpc_exec_ctx *exec_ctx, grpc_endpoint *ep,
288 grpc_pollset *pollset) {
289 // No-op. We're ignoring pollsets currently
murgatroid99dedb9232016-09-26 13:54:04 -0700290 (void)exec_ctx;
291 (void)ep;
292 (void)pollset;
293 grpc_tcp *tcp = (grpc_tcp *)ep;
murgatroid999030c812016-09-16 13:25:08 -0700294 tcp->pollset = pollset;
295}
296
297static void uv_add_to_pollset_set(grpc_exec_ctx *exec_ctx, grpc_endpoint *ep,
298 grpc_pollset_set *pollset) {
299 // No-op. We're ignoring pollsets currently
murgatroid99dedb9232016-09-26 13:54:04 -0700300 (void)exec_ctx;
301 (void)ep;
302 (void)pollset;
murgatroid999030c812016-09-16 13:25:08 -0700303}
304
murgatroid9969259d42016-10-31 14:34:10 -0700305static void shutdown_callback(uv_shutdown_t *req, int status) {}
306
Craig Tiller22f13fb2017-01-27 11:43:25 -0800307static void uv_endpoint_shutdown(grpc_exec_ctx *exec_ctx, grpc_endpoint *ep,
308 grpc_error *why) {
murgatroid999030c812016-09-16 13:25:08 -0700309 grpc_tcp *tcp = (grpc_tcp *)ep;
murgatroid992c287ca2016-10-07 09:55:35 -0700310 if (!tcp->shutting_down) {
311 tcp->shutting_down = true;
murgatroid9969259d42016-10-31 14:34:10 -0700312 uv_shutdown_t *req = &tcp->shutdown_req;
murgatroid992c287ca2016-10-07 09:55:35 -0700313 uv_shutdown(req, (uv_stream_t *)tcp->handle, shutdown_callback);
314 }
Craig Tiller22f13fb2017-01-27 11:43:25 -0800315 GRPC_ERROR_UNREF(why);
murgatroid999030c812016-09-16 13:25:08 -0700316}
317
318static void uv_destroy(grpc_exec_ctx *exec_ctx, grpc_endpoint *ep) {
319 grpc_network_status_unregister_endpoint(ep);
320 grpc_tcp *tcp = (grpc_tcp *)ep;
murgatroid999030c812016-09-16 13:25:08 -0700321 uv_close((uv_handle_t *)tcp->handle, uv_close_callback);
murgatroid999030c812016-09-16 13:25:08 -0700322}
323
324static char *uv_get_peer(grpc_endpoint *ep) {
325 grpc_tcp *tcp = (grpc_tcp *)ep;
326 return gpr_strdup(tcp->peer_string);
327}
328
murgatroid9969259d42016-10-31 14:34:10 -0700329static grpc_resource_user *uv_get_resource_user(grpc_endpoint *ep) {
330 grpc_tcp *tcp = (grpc_tcp *)ep;
murgatroid99e2672c92016-11-09 15:12:22 -0800331 return tcp->resource_user;
murgatroid9969259d42016-10-31 14:34:10 -0700332}
333
murgatroid99dedb9232016-09-26 13:54:04 -0700334static grpc_workqueue *uv_get_workqueue(grpc_endpoint *ep) { return NULL; }
murgatroid999030c812016-09-16 13:25:08 -0700335
murgatroid992e012342016-11-10 18:24:08 -0800336static int uv_get_fd(grpc_endpoint *ep) { return -1; }
337
murgatroid9969259d42016-10-31 14:34:10 -0700338static grpc_endpoint_vtable vtable = {
339 uv_endpoint_read, uv_endpoint_write, uv_get_workqueue,
340 uv_add_to_pollset, uv_add_to_pollset_set, uv_endpoint_shutdown,
murgatroid992e012342016-11-10 18:24:08 -0800341 uv_destroy, uv_get_resource_user, uv_get_peer,
342 uv_get_fd};
murgatroid999030c812016-09-16 13:25:08 -0700343
murgatroid9969259d42016-10-31 14:34:10 -0700344grpc_endpoint *grpc_tcp_create(uv_tcp_t *handle,
345 grpc_resource_quota *resource_quota,
346 char *peer_string) {
murgatroid999030c812016-09-16 13:25:08 -0700347 grpc_tcp *tcp = (grpc_tcp *)gpr_malloc(sizeof(grpc_tcp));
348
349 if (grpc_tcp_trace) {
350 gpr_log(GPR_DEBUG, "Creating TCP endpoint %p", tcp);
351 }
352
murgatroid9904d28292016-10-27 14:36:57 -0700353 /* Disable Nagle's Algorithm */
murgatroid9912e57752016-10-27 14:30:41 -0700354 uv_tcp_nodelay(handle, 1);
355
murgatroid999030c812016-09-16 13:25:08 -0700356 memset(tcp, 0, sizeof(grpc_tcp));
357 tcp->base.vtable = &vtable;
358 tcp->handle = handle;
359 handle->data = tcp;
360 gpr_ref_init(&tcp->refcount, 1);
361 tcp->peer_string = gpr_strdup(peer_string);
murgatroid992c287ca2016-10-07 09:55:35 -0700362 tcp->shutting_down = false;
murgatroid99e2672c92016-11-09 15:12:22 -0800363 tcp->resource_user = grpc_resource_user_create(resource_quota, peer_string);
murgatroid999030c812016-09-16 13:25:08 -0700364 /* Tell network status tracking code about the new endpoint */
365 grpc_network_status_register_endpoint(&tcp->base);
366
367#ifndef GRPC_UV_TCP_HOLD_LOOP
368 uv_unref((uv_handle_t *)handle);
369#endif
370
371 return &tcp->base;
372}
373
374#endif /* GRPC_UV */