mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-22 01:40:28 +00:00
added ug_gai_strerror Default to gai_strerror, but use WSAGetLastError() in Windows. This solves a problem with localized error messages but with a wrong non-ASCII characters. Instead of gai_strerror, WSAGetLastError is preferred according the Microsoft MSDN docs (thread safety). Also using get_win_error() to ensure non-localized output (preferred).
88 lines
2.8 KiB
C++
88 lines
2.8 KiB
C++
/**
|
|
* @file utils/net.h
|
|
* @author Martin Pulec <pulec@cesnet.cz>
|
|
*/
|
|
/*
|
|
* Copyright (c) 2016-2021 CESNET z.s.p.o.
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, is permitted provided that the following conditions
|
|
* are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
*
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* 3. Neither the name of CESNET nor the names of its contributors may be
|
|
* used to endorse or promote products derived from this software without
|
|
* specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING,
|
|
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
* AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
* EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
|
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
|
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#ifndef UTILS_NET_H_
|
|
#define UTILS_NET_H_
|
|
|
|
#ifdef __cplusplus
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
#else
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#endif // __cplusplus
|
|
|
|
#define IN6_MAX_ASCII_LEN 39 // 32 nibbles + 7 colons
|
|
|
|
#define IN6ADDR_BLACKHOLE_INIT { { { 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 } } } // RFC 6666
|
|
#define IN6_BLACKHOLE_PREFIX_LEN 8
|
|
#define IN6_BLACKHOLE_STR "100::1"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct sockaddr;
|
|
struct sockaddr_storage;
|
|
bool is_addr_linklocal(struct sockaddr *sa);
|
|
bool is_addr_loopback(struct sockaddr *sa);
|
|
bool is_addr_private(struct sockaddr *sa);
|
|
bool is_addr_multicast(const char *addr);
|
|
bool is_host_loopback(const char *hostname);
|
|
bool is_host_private(const char *hostname);
|
|
uint16_t socket_get_recv_port(int fd);
|
|
bool get_local_addresses(struct sockaddr_storage *addrs, size_t *len, int ip_version);
|
|
bool is_ipv6_supported(void);
|
|
void get_sockaddr_addr_str(struct sockaddr *sa, char *buf, size_t n);
|
|
unsigned get_sockaddr_addr_port(struct sockaddr *sa);
|
|
const char *get_sockaddr_str(struct sockaddr *sa);
|
|
const char *ug_gai_strerror(int errcode);
|
|
|
|
#ifdef WIN32
|
|
#define CLOSESOCKET closesocket
|
|
#else
|
|
#define CLOSESOCKET close
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif// UTILS_NET_H_
|
|
|