network.h 3.8 KB
Newer Older
1
/*
2
 * Copyright (c) 2007 The Libav Project
3
 *
4
 * This file is part of Libav.
5
 *
6
 * Libav is free software; you can redistribute it and/or
7 8 9 10
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
11
 * Libav is distributed in the hope that it will be useful,
12 13 14 15 16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
17
 * License along with Libav; if not, write to the Free Software
18 19 20
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

21 22
#ifndef AVFORMAT_NETWORK_H
#define AVFORMAT_NETWORK_H
23

24 25
#include <errno.h>

26
#include "config.h"
27
#include "libavutil/error.h"
28
#include "os_support.h"
29

30 31 32 33
#if HAVE_UNISTD_H
#include <unistd.h>
#endif

34
#if HAVE_WINSOCK2_H
35 36 37
#include <winsock2.h>
#include <ws2tcpip.h>

38 39 40 41
#define EPROTONOSUPPORT WSAEPROTONOSUPPORT
#define ETIMEDOUT       WSAETIMEDOUT
#define ECONNREFUSED    WSAECONNREFUSED
#define EINPROGRESS     WSAEINPROGRESS
42 43
#define getsockopt(a, b, c, d, e) getsockopt(a, b, c, (char*) d, e)
#define setsockopt(a, b, c, d, e) setsockopt(a, b, c, (const char*) d, e)
44

45
int ff_neterrno(void);
46
#else
47 48 49 50 51
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>

52
#define ff_neterrno() AVERROR(errno)
53 54
#endif

55
#if HAVE_ARPA_INET_H
56 57
#include <arpa/inet.h>
#endif
58

59 60 61 62
#if HAVE_POLL_H
#include <poll.h>
#endif

63 64
int ff_socket_nonblock(int socket, int enable);

65
extern int ff_network_inited_globally;
66 67 68
int ff_network_init(void);
void ff_network_close(void);

69 70 71
void ff_tls_init(void);
void ff_tls_deinit(void);

72
int ff_network_wait_fd(int fd, int write);
73

74
int ff_inet_aton (const char * str, struct in_addr * add);
75

76 77
#if !HAVE_STRUCT_SOCKADDR_STORAGE
struct sockaddr_storage {
78 79 80 81 82 83 84 85 86
#if HAVE_STRUCT_SOCKADDR_SA_LEN
    uint8_t ss_len;
    uint8_t ss_family;
#else
    uint16_t ss_family;
#endif
    char ss_pad1[6];
    int64_t ss_align;
    char ss_pad2[112];
87 88 89
};
#endif

90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
#if !HAVE_STRUCT_ADDRINFO
struct addrinfo {
    int ai_flags;
    int ai_family;
    int ai_socktype;
    int ai_protocol;
    int ai_addrlen;
    struct sockaddr *ai_addr;
    char *ai_canonname;
    struct addrinfo *ai_next;
};
#endif

/* getaddrinfo constants */
#ifndef EAI_FAIL
#define EAI_FAIL 4
#endif

108 109 110 111 112 113 114 115
#ifndef EAI_FAMILY
#define EAI_FAMILY 5
#endif

#ifndef EAI_NONAME
#define EAI_NONAME 8
#endif

116 117 118 119 120 121 122 123 124 125 126 127
#ifndef AI_PASSIVE
#define AI_PASSIVE 1
#endif

#ifndef AI_CANONNAME
#define AI_CANONNAME 2
#endif

#ifndef AI_NUMERICHOST
#define AI_NUMERICHOST 4
#endif

128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
#ifndef NI_NOFQDN
#define NI_NOFQDN 1
#endif

#ifndef NI_NUMERICHOST
#define NI_NUMERICHOST 2
#endif

#ifndef NI_NAMERQD
#define NI_NAMERQD 4
#endif

#ifndef NI_NUMERICSERV
#define NI_NUMERICSERV 8
#endif

#ifndef NI_DGRAM
#define NI_DGRAM 16
#endif

148 149 150 151
#if !HAVE_GETADDRINFO
int ff_getaddrinfo(const char *node, const char *service,
                   const struct addrinfo *hints, struct addrinfo **res);
void ff_freeaddrinfo(struct addrinfo *res);
152 153 154
int ff_getnameinfo(const struct sockaddr *sa, int salen,
                   char *host, int hostlen,
                   char *serv, int servlen, int flags);
155
const char *ff_gai_strerror(int ecode);
156 157
#define getaddrinfo ff_getaddrinfo
#define freeaddrinfo ff_freeaddrinfo
158
#define getnameinfo ff_getnameinfo
159
#define gai_strerror ff_gai_strerror
160 161
#endif

162 163 164 165
#ifndef INET6_ADDRSTRLEN
#define INET6_ADDRSTRLEN INET_ADDRSTRLEN
#endif

166 167 168 169 170 171 172
#ifndef IN_MULTICAST
#define IN_MULTICAST(a) ((((uint32_t)(a)) & 0xf0000000) == 0xe0000000)
#endif
#ifndef IN6_IS_ADDR_MULTICAST
#define IN6_IS_ADDR_MULTICAST(a) (((uint8_t *) (a))[0] == 0xff)
#endif

173
int ff_is_multicast_address(struct sockaddr *addr);
174

175
#endif /* AVFORMAT_NETWORK_H */