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
|
|
|
|
2009-01-24 14:52:46 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
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>
|
|
|
|
|
|
|
|
#define ff_neterrno() WSAGetLastError()
|
|
|
|
#define FF_NETERROR(err) WSA##err
|
|
|
|
#define WSAEAGAIN WSAEWOULDBLOCK
|
|
|
|
#else
|
2007-02-04 17:05:44 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
|
2007-04-27 00:35:54 +00:00
|
|
|
#define ff_neterrno() errno
|
|
|
|
#define FF_NETERROR(err) err
|
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
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2009-01-13 23:44:16 +00:00
|
|
|
#if !HAVE_INET_ATON
|
2007-03-23 22:01:37 +00:00
|
|
|
/* in os_support.c */
|
|
|
|
int inet_aton (const char * str, struct in_addr * add);
|
|
|
|
#endif
|
|
|
|
|
2008-08-31 07:39:47 +00:00
|
|
|
#endif /* AVFORMAT_NETWORK_H */
|