You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
2.9 KiB
101 lines
2.9 KiB
/*==LICENSE==* |
|
|
|
CyanWorlds.com Engine - MMOG client, server and tools |
|
Copyright (C) 2011 Cyan Worlds, Inc. |
|
|
|
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 3 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, see <http://www.gnu.org/licenses/>. |
|
|
|
You can contact Cyan Worlds, Inc. by email legal@cyan.com |
|
or by snail mail at: |
|
Cyan Worlds, Inc. |
|
14617 N Newport Hwy |
|
Mead, WA 99021 |
|
|
|
*==LICENSE==*/ |
|
#ifndef plNet_h_inc |
|
#define plNet_h_inc |
|
|
|
|
|
#include "hsTypes.h" // for hsAssert |
|
|
|
|
|
//////////////////////////////////////////////////// |
|
// Windows net types |
|
#if HS_BUILD_FOR_WIN32 |
|
|
|
#include <winsock2.h> |
|
|
|
const int kBlockingError = WSAEWOULDBLOCK; |
|
const int kTimeoutError = WSAETIMEDOUT; |
|
const SOCKET kBadSocket = 0xffffffff; |
|
typedef int socklen_t; |
|
|
|
|
|
//////////////////////////////////////////////////// |
|
// UNIX net types |
|
#else |
|
#ifdef HS_BUILD_FOR_FREEBSD |
|
#include <sys/time.h> |
|
#endif |
|
#include <sys/socket.h> |
|
#include <sys/ioctl.h> |
|
#include <netinet/in.h> |
|
#include <arpa/inet.h> |
|
#include <netdb.h> |
|
#include <errno.h> |
|
|
|
typedef int SOCKET; |
|
const int kBlockingError = EWOULDBLOCK; |
|
const int kTimeoutError = ETIMEDOUT; |
|
const SOCKET kBadSocket = -1; |
|
|
|
// must #define BSDBLOCK if compiling on BSD |
|
|
|
#endif |
|
|
|
const unsigned int kDefaultSocketTimeout = 5*60*1000; // 5 mins in millis |
|
|
|
//////////////////////////////////////////////////// |
|
// OS socket interface wrapper |
|
struct plNet |
|
{ |
|
static SOCKET NewUDP(); |
|
static SOCKET NewTCP(); |
|
static int GetError(); |
|
static int Read(const SOCKET sck, char * buf, const int size); |
|
static int Write(const SOCKET sck, const char * buf, const int len); |
|
static int ReadFrom(const SOCKET sck, char * buf, int len, sockaddr_in * addr); |
|
static int WriteTo(const SOCKET sck, const char * buf, const int len, sockaddr_in * addr); |
|
static int Connect(const SOCKET sck, const sockaddr_in * addr); |
|
static int Close(const SOCKET sck); |
|
static int Bind(const SOCKET sck, const sockaddr_in * addr); |
|
static int Listen(const SOCKET sck, const int qsize); |
|
static int Accept(const SOCKET sck, sockaddr_in * addr); |
|
static int Ioctl(const SOCKET sck, const long flags, unsigned long * val); |
|
static const char * plNet::GetErrorMsg(int error); |
|
// TODO: Add get/setsockopt() here |
|
~plNet(); |
|
private: |
|
static plNet _; |
|
plNet(); |
|
// not impl |
|
plNet(const plNet &); |
|
plNet & operator=(const plNet &); |
|
}; |
|
|
|
|
|
|
|
|
|
|
|
#endif // plNet_h_inc
|
|
|