2007-02-04 17:05:44 +00:00
|
|
|
/*
|
2009-01-19 15:46:40 +00:00
|
|
|
* Copyright (c) 2007 The FFmpeg Project
|
2007-02-04 17:05:44 +00:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2008-08-31 07:39:47 +00:00
|
|
|
#ifndef AVFORMAT_NETWORK_H
|
|
|
|
#define AVFORMAT_NETWORK_H
|
2007-02-04 17:05:44 +00:00
|
|
|
|
2011-06-04 14:58:31 +00:00
|
|
|
#include <errno.h>
|
|
|
|
|
2009-01-24 14:52:46 +00:00
|
|
|
#include "config.h"
|
2011-06-04 14:58:31 +00:00
|
|
|
#include "libavutil/error.h"
|
2011-04-07 13:09:03 +00:00
|
|
|
#include "os_support.h"
|
2009-01-24 14:52:46 +00:00
|
|
|
|
2009-01-13 23:44:16 +00:00
|
|
|
#if HAVE_WINSOCK2_H
|
2007-05-15 14:58:30 +00:00
|
|
|
#include <winsock2.h>
|
|
|
|
#include <ws2tcpip.h>
|
|
|
|
|
2011-02-19 18:14:11 +00:00
|
|
|
#define EPROTONOSUPPORT WSAEPROTONOSUPPORT
|
|
|
|
#define ETIMEDOUT WSAETIMEDOUT
|
|
|
|
#define ECONNREFUSED WSAECONNREFUSED
|
|
|
|
#define EINPROGRESS WSAEINPROGRESS
|
|
|
|
|
2011-05-26 11:37:13 +00:00
|
|
|
static inline int ff_neterrno(void)
|
|
|
|
{
|
2011-02-19 18:14:11 +00:00
|
|
|
int err = WSAGetLastError();
|
|
|
|
switch (err) {
|
|
|
|
case WSAEWOULDBLOCK:
|
|
|
|
return AVERROR(EAGAIN);
|
|
|
|
case WSAEINTR:
|
|
|
|
return AVERROR(EINTR);
|
|
|
|
}
|
|
|
|
return -err;
|
|
|
|
}
|
2007-05-15 14:58:30 +00:00
|
|
|
#else
|
2007-02-04 17:05:44 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
|
2010-04-15 18:27:27 +00:00
|
|
|
#define ff_neterrno() AVERROR(errno)
|
2007-05-15 14:58:30 +00:00
|
|
|
#endif
|
|
|
|
|
2009-01-13 23:44:16 +00:00
|
|
|
#if HAVE_ARPA_INET_H
|
2007-05-15 14:58:30 +00:00
|
|
|
#include <arpa/inet.h>
|
|
|
|
#endif
|
2007-04-27 00:35:54 +00:00
|
|
|
|
2011-04-04 16:17:12 +00:00
|
|
|
#if HAVE_POLL_H
|
|
|
|
#include <poll.h>
|
|
|
|
#endif
|
|
|
|
|
2007-04-27 00:41:50 +00:00
|
|
|
int ff_socket_nonblock(int socket, int enable);
|
|
|
|
|
2007-08-09 23:39:05 +00:00
|
|
|
static inline int ff_network_init(void)
|
|
|
|
{
|
2009-01-13 23:44:16 +00:00
|
|
|
#if HAVE_WINSOCK2_H
|
2007-08-09 23:39:05 +00:00
|
|
|
WSADATA wsaData;
|
|
|
|
if (WSAStartup(MAKEWORD(1,1), &wsaData))
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-04-04 16:17:12 +00:00
|
|
|
static inline int ff_network_wait_fd(int fd, int write)
|
|
|
|
{
|
|
|
|
int ev = write ? POLLOUT : POLLIN;
|
|
|
|
struct pollfd p = { .fd = fd, .events = ev, .revents = 0 };
|
|
|
|
int ret;
|
|
|
|
ret = poll(&p, 1, 100);
|
2011-04-28 07:27:40 +00:00
|
|
|
return ret < 0 ? ff_neterrno() : p.revents & (ev | POLLERR | POLLHUP) ? 0 : AVERROR(EAGAIN);
|
2011-04-04 16:17:12 +00:00
|
|
|
}
|
|
|
|
|
2007-08-09 23:39:05 +00:00
|
|
|
static inline void ff_network_close(void)
|
|
|
|
{
|
2009-01-13 23:44:16 +00:00
|
|
|
#if HAVE_WINSOCK2_H
|
2007-08-09 23:39:05 +00:00
|
|
|
WSACleanup();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2010-03-07 19:48:59 +00:00
|
|
|
int ff_inet_aton (const char * str, struct in_addr * add);
|
2007-03-23 22:01:37 +00:00
|
|
|
|
2010-01-11 17:42:35 +00:00
|
|
|
#if !HAVE_STRUCT_SOCKADDR_STORAGE
|
|
|
|
struct sockaddr_storage {
|
2010-01-20 17:26:14 +00:00
|
|
|
#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];
|
2010-01-11 17:42:35 +00:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2010-01-11 17:27:07 +00:00
|
|
|
#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
|
|
|
|
|
2010-01-11 17:45:17 +00:00
|
|
|
#ifndef EAI_FAMILY
|
|
|
|
#define EAI_FAMILY 5
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef EAI_NONAME
|
|
|
|
#define EAI_NONAME 8
|
|
|
|
#endif
|
|
|
|
|
2010-01-11 17:27:07 +00:00
|
|
|
#ifndef AI_PASSIVE
|
|
|
|
#define AI_PASSIVE 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef AI_CANONNAME
|
|
|
|
#define AI_CANONNAME 2
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef AI_NUMERICHOST
|
|
|
|
#define AI_NUMERICHOST 4
|
|
|
|
#endif
|
|
|
|
|
2010-01-11 17:45:17 +00:00
|
|
|
#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
|
|
|
|
|
2010-01-11 17:27:07 +00:00
|
|
|
#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);
|
2010-01-11 17:45:17 +00:00
|
|
|
int ff_getnameinfo(const struct sockaddr *sa, int salen,
|
|
|
|
char *host, int hostlen,
|
|
|
|
char *serv, int servlen, int flags);
|
2010-02-08 18:48:12 +00:00
|
|
|
const char *ff_gai_strerror(int ecode);
|
2010-01-11 17:27:07 +00:00
|
|
|
#define getaddrinfo ff_getaddrinfo
|
|
|
|
#define freeaddrinfo ff_freeaddrinfo
|
2010-01-11 17:45:17 +00:00
|
|
|
#define getnameinfo ff_getnameinfo
|
2010-02-08 18:48:12 +00:00
|
|
|
#define gai_strerror ff_gai_strerror
|
2010-01-11 17:27:07 +00:00
|
|
|
#endif
|
|
|
|
|
2010-09-03 20:06:01 +00:00
|
|
|
#ifndef INET6_ADDRSTRLEN
|
|
|
|
#define INET6_ADDRSTRLEN INET_ADDRSTRLEN
|
|
|
|
#endif
|
|
|
|
|
2010-10-07 07:53:31 +00:00
|
|
|
#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
|
|
|
|
|
2010-10-07 07:58:56 +00:00
|
|
|
static inline int ff_is_multicast_address(struct sockaddr *addr)
|
2010-10-07 07:54:52 +00:00
|
|
|
{
|
2010-10-07 07:58:56 +00:00
|
|
|
if (addr->sa_family == AF_INET) {
|
2010-10-07 07:54:52 +00:00
|
|
|
return IN_MULTICAST(ntohl(((struct sockaddr_in *)addr)->sin_addr.s_addr));
|
|
|
|
}
|
|
|
|
#if HAVE_STRUCT_SOCKADDR_IN6
|
2010-10-07 07:58:56 +00:00
|
|
|
if (addr->sa_family == AF_INET6) {
|
2010-10-07 07:54:52 +00:00
|
|
|
return IN6_IS_ADDR_MULTICAST(&((struct sockaddr_in6 *)addr)->sin6_addr);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-08-31 07:39:47 +00:00
|
|
|
#endif /* AVFORMAT_NETWORK_H */
|