-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMySocket.h
75 lines (55 loc) · 1.3 KB
/
MySocket.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#pragma once
#include "mq.h"
#include <cstdint>
#ifdef _WIN32
#include <winsock.h>
typedef int socklen_t;
#else
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <arpa/inet.h>
typedef int SOCKET;
#define INVALID_SOCKET -1
#define SOCKET_ERROR -1
#endif
class ODSocket {
public:
ODSocket(SOCKET sock = INVALID_SOCKET);
~ODSocket();
// Create socket object for snd/recv data
bool Create(int af, int type, int protocol = 0);
// Connect socket
bool Connect(const char* ip, unsigned short port);
// Bind socket
bool Bind(unsigned short port);
// Listen socket
bool Listen(int backlog = 500);
// Accept socket
bool Accept(ODSocket& s, char* fromip = NULL);
// Send socket
int Send(const char* buf, int len, int flags = 0);
// Recv socket
int Recv(char* buf, int len, int flags = 0);
// Close socket
int Close();
// Get errno
int GetError();
//#pragma region just for win32
static int Init();
static int Clean();
// Domain parse
static bool DnsParse(const char* domain, char* ip);
//set mode
void setMode(int type);
ODSocket& operator = (SOCKET s);
operator SOCKET();
//send Msg
bool SendMsg(MqHead head,const char* body, int body_len, int flags =0);
public:
SOCKET m_sock;
};