2008-08-06 18:36:30 +00:00
|
|
|
// This file is part of BOINC.
|
2005-03-07 06:09:04 +00:00
|
|
|
// http://boinc.berkeley.edu
|
2008-08-06 18:36:30 +00:00
|
|
|
// Copyright (C) 2008 University of California
|
2005-03-07 06:09:04 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC 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 3 of the License, or (at your option) any later version.
|
2005-03-07 06:09:04 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC is distributed in the hope that it will be useful,
|
2005-03-07 06:09:04 +00:00
|
|
|
// 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.
|
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
2005-08-16 22:49:18 +00:00
|
|
|
|
2005-05-06 01:54:00 +00:00
|
|
|
#ifndef _BOINC_NETWORK_H_
|
|
|
|
#define _BOINC_NETWORK_H_
|
2005-03-07 06:09:04 +00:00
|
|
|
|
2005-08-16 22:57:22 +00:00
|
|
|
#include <string.h>
|
2005-08-25 23:51:49 +00:00
|
|
|
#ifndef _WIN32
|
2009-05-27 23:36:55 +00:00
|
|
|
#include <sys/select.h>
|
2005-08-25 23:07:58 +00:00
|
|
|
#include <unistd.h>
|
2005-12-16 03:35:15 +00:00
|
|
|
#else
|
|
|
|
#include "boinc_win.h"
|
2005-08-25 23:51:49 +00:00
|
|
|
#endif
|
2005-08-16 20:48:21 +00:00
|
|
|
|
|
|
|
struct FDSET_GROUP {
|
|
|
|
fd_set read_fds;
|
|
|
|
fd_set write_fds;
|
|
|
|
fd_set exc_fds;
|
|
|
|
int max_fd;
|
|
|
|
|
|
|
|
void zero() {
|
|
|
|
FD_ZERO(&read_fds);
|
|
|
|
FD_ZERO(&write_fds);
|
|
|
|
FD_ZERO(&exc_fds);
|
|
|
|
max_fd = -1;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2007-03-08 21:00:26 +00:00
|
|
|
extern int resolve_hostname(char* hostname, int& ip_addr);
|
2005-04-08 23:40:50 +00:00
|
|
|
extern int boinc_socket(int& sock);
|
|
|
|
extern int boinc_socket_asynch(int sock, bool asynch);
|
2005-03-07 06:09:04 +00:00
|
|
|
extern void boinc_close_socket(int sock);
|
|
|
|
extern int get_socket_error(int fd);
|
2005-06-07 21:46:11 +00:00
|
|
|
extern const char* socket_error_str();
|
2009-04-12 15:30:45 +00:00
|
|
|
extern void reset_dns();
|
2005-03-07 06:09:04 +00:00
|
|
|
|
2006-01-23 08:47:05 +00:00
|
|
|
#ifndef NETWORK_ALIVE_LAN
|
|
|
|
#define NETWORK_ALIVE_LAN 0x00000001
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef NETWORK_ALIVE_WAN
|
|
|
|
#define NETWORK_ALIVE_WAN 0x00000002
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef NETWORK_ALIVE_AOL
|
|
|
|
#define NETWORK_ALIVE_AOL 0x00000004
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2005-12-16 03:35:15 +00:00
|
|
|
#if defined(_WIN32) && defined(USE_WINSOCK)
|
2005-03-30 21:11:49 +00:00
|
|
|
extern int WinsockInitialize();
|
|
|
|
extern int WinsockCleanup();
|
2005-03-29 23:56:50 +00:00
|
|
|
#endif
|
2005-05-06 01:54:00 +00:00
|
|
|
#endif
|