-
Notifications
You must be signed in to change notification settings - Fork 0
/
Server.cpp
88 lines (76 loc) · 1.8 KB
/
Server.cpp
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
76
77
78
79
80
81
82
83
84
85
86
87
88
//
// Created by yoni on 27/08/18.
//
#include "Server.h"
#include <vector>
#include <list>
#include <map>
#include <set>
#include <math.h>
#include <unistd.h>
#include <stdio.h>
#include <sys/socket.h>
#include <stdlib.h>
#include <netinet/in.h>
#include <string.h>
#define PORT 20000
#include <string>
#include <sstream>
#include <vector>
#include <iterator>
#include <stdlib.h>
#include <iostream>
#include <sstream>
#include <fstream>
#include <vector>
#include <boost/timer.hpp>
#include "CGAL_defines.h"
#include <unistd.h>
#include <stdio.h>
using namespace std;
Server::Server()
{
addrlen = sizeof(address);
cout << "socket is ready for action!" << endl;
if ((server_fd = socket(AF_INET, SOCK_STREAM, 0)) == 0) {
perror("socket failed");
exit(EXIT_FAILURE);
}
if (setsockopt(server_fd, SOL_SOCKET, SO_REUSEADDR | SO_REUSEPORT,
&opt, sizeof(opt))) {
perror("setsockopt");
exit(EXIT_FAILURE);
}
address.sin_family = AF_INET;
address.sin_addr.s_addr = INADDR_ANY;
address.sin_port = htons(PORT);
if (bind(server_fd, (struct sockaddr *) &address,
sizeof(address)) < 0) {
perror("bind failed");
exit(EXIT_FAILURE);
}
if (listen(server_fd, 3) < 0) {
perror("listen");
exit(EXIT_FAILURE);
}
}
void Server::waitForConnection()
{
if ((new_socket = accept(server_fd, (struct sockaddr *) &address, (socklen_t *) &addrlen)) < 0)
{
perror("accept");
exit(EXIT_FAILURE);
}
cout << "waiting..." << endl;
}
string Server::readRequest()
{
char buffer[1024] = {0};
int param_read = read(new_socket, buffer, 1024);
cout << buffer << endl;
return buffer;
}
void Server::send(string data)
{
::send(new_socket, data.c_str(), data.length(), 0);
}