libavformat/network.h
42572ef5
 /*
406792e7
  * Copyright (c) 2007 The FFmpeg Project
42572ef5
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * 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.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * 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
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
98790382
 #ifndef AVFORMAT_NETWORK_H
 #define AVFORMAT_NETWORK_H
42572ef5
 
8d459acc
 #include <errno.h>
 
da837937
 #include "config.h"
8d459acc
 #include "libavutil/error.h"
a2031251
 #include "os_support.h"
da837937
 
39dba5aa
 #if HAVE_UNISTD_H
 #include <unistd.h>
 #endif
 
b250f9c6
 #if HAVE_WINSOCK2_H
5676d140
 #include <winsock2.h>
 #include <ws2tcpip.h>
 
4b1b1449
 #ifndef EPROTONOSUPPORT
c24a4034
 #define EPROTONOSUPPORT WSAEPROTONOSUPPORT
ed3c0fe8
 #endif
4b1b1449
 #ifndef ETIMEDOUT
c24a4034
 #define ETIMEDOUT       WSAETIMEDOUT
ed3c0fe8
 #endif
4b1b1449
 #ifndef ECONNREFUSED
c24a4034
 #define ECONNREFUSED    WSAECONNREFUSED
ed3c0fe8
 #endif
4b1b1449
 #ifndef EINPROGRESS
c24a4034
 #define EINPROGRESS     WSAEINPROGRESS
4b1b1449
 #endif
 
56168769
 #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)
c24a4034
 
f6d37100
 int ff_neterrno(void);
5676d140
 #else
42572ef5
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <netinet/in.h>
 #include <netdb.h>
 
4aecee7f
 #define ff_neterrno() AVERROR(errno)
5676d140
 #endif
 
b250f9c6
 #if HAVE_ARPA_INET_H
5676d140
 #include <arpa/inet.h>
 #endif
8da4034f
 
ebba2b3e
 #if HAVE_POLL_H
 #include <poll.h>
 #endif
 
ba472aaf
 int ff_socket_nonblock(int socket, int enable);
 
ce145690
 extern int ff_network_inited_globally;
f6d37100
 int ff_network_init(void);
 void ff_network_close(void);
 
48e59ad8
 void ff_tls_init(void);
 void ff_tls_deinit(void);
 
f6d37100
 int ff_network_wait_fd(int fd, int write);
1642cb6b
 
ac11d562
 int ff_inet_aton (const char * str, struct in_addr * add);
c9fdab0d
 
34a65f1f
 #if !HAVE_STRUCT_SOCKADDR_STORAGE
 struct sockaddr_storage {
3d7b42f9
 #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];
34a65f1f
 };
 #endif
 
fa053ca7
 #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 */
2ca6e9bb
 #ifndef EAI_AGAIN
 #define EAI_AGAIN 2
 #endif
 #ifndef EAI_BADFLAGS
 #define EAI_BADFLAGS 3
 #endif
fa053ca7
 #ifndef EAI_FAIL
 #define EAI_FAIL 4
 #endif
5d629b72
 #ifndef EAI_FAMILY
 #define EAI_FAMILY 5
 #endif
2ca6e9bb
 #ifndef EAI_MEMORY
 #define EAI_MEMORY 6
 #endif
 #ifndef EAI_NODATA
 #define EAI_NODATA 7
 #endif
5d629b72
 #ifndef EAI_NONAME
 #define EAI_NONAME 8
 #endif
2ca6e9bb
 #ifndef EAI_SERVICE
 #define EAI_SERVICE 9
 #endif
 #ifndef EAI_SOCKTYPE
 #define EAI_SOCKTYPE 10
 #endif
5d629b72
 
fa053ca7
 #ifndef AI_PASSIVE
 #define AI_PASSIVE 1
 #endif
 
 #ifndef AI_CANONNAME
 #define AI_CANONNAME 2
 #endif
 
 #ifndef AI_NUMERICHOST
 #define AI_NUMERICHOST 4
 #endif
 
5d629b72
 #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
 
fa053ca7
 #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);
5d629b72
 int ff_getnameinfo(const struct sockaddr *sa, int salen,
                    char *host, int hostlen,
                    char *serv, int servlen, int flags);
fa053ca7
 #define getaddrinfo ff_getaddrinfo
 #define freeaddrinfo ff_freeaddrinfo
5d629b72
 #define getnameinfo ff_getnameinfo
9e4b04f8
 #endif
 #if !HAVE_GETADDRINFO || HAVE_WINSOCK2_H
 const char *ff_gai_strerror(int ecode);
c98e2053
 #undef gai_strerror
04a2b04b
 #define gai_strerror ff_gai_strerror
fa053ca7
 #endif
 
f0d8ac52
 #ifndef INET6_ADDRSTRLEN
 #define INET6_ADDRSTRLEN INET_ADDRSTRLEN
 #endif
 
f63630cd
 #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
 
f6d37100
 int ff_is_multicast_address(struct sockaddr *addr);
7ac57fa5
 
98790382
 #endif /* AVFORMAT_NETWORK_H */