-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTCP_socket.hpp
46 lines (38 loc) · 867 Bytes
/
TCP_socket.hpp
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
#ifndef TCP_SOCKET_HPP
#define TCP_SOCKET_HPP
#include <netdb.h>
#include <netinet/in.h>
#include <string>
#include <sys/socket.h>
#include <sys/types.h> // data types used for system call
#include <unistd.h>
namespace TCPSocketSpace {
class TCPSocket {
public:
TCPSocket();
~TCPSocket();
int get_socket_fd();
int send(const char *msg);
int receive();
int sock_fd;
sockaddr_in socket_address;
};
class TCPSocketServer : public TCPSocket {
public:
TCPSocketServer(){};
// ~TCPSocketServer();
int bind(int port);
int listen();
int accept(TCPSocket &clientSocket);
int receive(TCPSocket &client);
int send(const char *msg, TCPSocket &client);
private:
int client_sock_fd;
};
class TCPSocketClient : public TCPSocket {
public:
TCPSocketClient(){};
int connet(const char *domain, int port);
};
} // namespace TCPSocketSpace
#endif