2010-06-19 20:07:04 +00:00
|
|
|
/*
|
|
|
|
Copyright (C) 1996-2001 Id Software, Inc.
|
2014-09-22 08:55:46 +00:00
|
|
|
Copyright (C) 2010-2014 QuakeSpasm developers
|
2010-06-19 20:07:04 +00:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program 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 General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
*/
|
2010-06-21 15:24:40 +00:00
|
|
|
|
2010-06-20 10:03:05 +00:00
|
|
|
#ifndef __NET_WINIPX_H
|
|
|
|
#define __NET_WINIPX_H
|
|
|
|
|
2010-06-21 15:24:40 +00:00
|
|
|
sys_socket_t WIPX_Init (void);
|
2010-06-19 20:07:04 +00:00
|
|
|
void WIPX_Shutdown (void);
|
2017-09-17 02:12:53 +00:00
|
|
|
sys_socket_t WIPX_Listen (qboolean state);
|
2018-10-17 00:46:09 +00:00
|
|
|
int WIPX_GetAddresses (qhostaddr_t *addresses, int maxaddresses);
|
2010-06-21 15:24:40 +00:00
|
|
|
sys_socket_t WIPX_OpenSocket (int port);
|
|
|
|
int WIPX_CloseSocket (sys_socket_t socketid);
|
|
|
|
int WIPX_Connect (sys_socket_t socketid, struct qsockaddr *addr);
|
|
|
|
sys_socket_t WIPX_CheckNewConnections (void);
|
|
|
|
int WIPX_Read (sys_socket_t socketid, byte *buf, int len, struct qsockaddr *addr);
|
|
|
|
int WIPX_Write (sys_socket_t socketid, byte *buf, int len, struct qsockaddr *addr);
|
|
|
|
int WIPX_Broadcast (sys_socket_t socketid, byte *buf, int len);
|
2017-09-17 02:12:53 +00:00
|
|
|
const char *WIPX_AddrToString (struct qsockaddr *addr, qboolean masked);
|
2010-08-29 02:22:55 +00:00
|
|
|
int WIPX_StringToAddr (const char *string, struct qsockaddr *addr);
|
2010-06-21 15:24:40 +00:00
|
|
|
int WIPX_GetSocketAddr (sys_socket_t socketid, struct qsockaddr *addr);
|
2010-06-19 20:07:04 +00:00
|
|
|
int WIPX_GetNameFromAddr (struct qsockaddr *addr, char *name);
|
2010-08-29 02:22:55 +00:00
|
|
|
int WIPX_GetAddrFromName (const char *name, struct qsockaddr *addr);
|
2010-06-19 20:07:04 +00:00
|
|
|
int WIPX_AddrCompare (struct qsockaddr *addr1, struct qsockaddr *addr2);
|
|
|
|
int WIPX_GetSocketPort (struct qsockaddr *addr);
|
|
|
|
int WIPX_SetSocketPort (struct qsockaddr *addr, int port);
|
2010-06-20 10:03:05 +00:00
|
|
|
|
|
|
|
#endif /* __NET_WINIPX_H */
|
|
|
|
|