blob: f319e931b615ac0f70ee73a011ae046fbdc78e3c [file] [log] [blame]
murgatroid9979b32272016-08-08 13:38:30 -07001/*
2 *
Jan Tattermusch7897ae92017-06-07 22:57:36 +02003 * Copyright 2015 gRPC authors.
murgatroid9979b32272016-08-08 13:38:30 -07004 *
Jan Tattermusch7897ae92017-06-07 22:57:36 +02005 * 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
murgatroid9979b32272016-08-08 13:38:30 -07008 *
Jan Tattermusch7897ae92017-06-07 22:57:36 +02009 * http://www.apache.org/licenses/LICENSE-2.0
murgatroid9979b32272016-08-08 13:38:30 -070010 *
Jan Tattermusch7897ae92017-06-07 22:57:36 +020011 * 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.
murgatroid9979b32272016-08-08 13:38:30 -070016 *
17 */
18
19#ifndef GRPC_CORE_LIB_IOMGR_SOCKET_UTILS_H
20#define GRPC_CORE_LIB_IOMGR_SOCKET_UTILS_H
21
murgatroid997871f732016-09-23 13:49:05 -070022#include <stddef.h>
murgatroid9979b32272016-08-08 13:38:30 -070023
Yash Tibrewala7e6d652017-09-20 18:56:37 -070024#ifdef __cplusplus
25extern "C" {
26#endif
27
murgatroid9979b32272016-08-08 13:38:30 -070028/* A wrapper for inet_ntop on POSIX systems and InetNtop on Windows systems */
murgatroid997871f732016-09-23 13:49:05 -070029const char *grpc_inet_ntop(int af, const void *src, char *dst, size_t size);
murgatroid9979b32272016-08-08 13:38:30 -070030
Yash Tibrewala7e6d652017-09-20 18:56:37 -070031#ifdef __cplusplus
32}
33#endif
34
35#endif /* GRPC_CORE_LIB_IOMGR_SOCKET_UTILS_H */