-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphantom.c
72 lines (57 loc) · 1.67 KB
/
phantom.c
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
/*
LCLO Phantom Server (C Edition)
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
@author: Thorin
*/
#include <unistd.h>
#include <stdio.h>
#include <sys/socket.h>
#include <stdlib.h>
#include <netinet/in.h>
#include <string.h>
#include "lib/protocol/protocol.h"
#define PROTOCOL 0
#define PORT 25104
void assert(int valid, char msg[])
{
if (valid)
return;
perror(msg);
exit(EXIT_FAILURE);
}
int main(int argc, char const *argv[])
{
int server_fd;
int opt = 1;
// Creating socket file descriptor
assert(!((server_fd = socket(AF_INET, SOCK_STREAM, 0)) == 0), "socket failed");
// Forcefully attaching socket to the port PORT
assert(!(setsockopt(server_fd, SOL_SOCKET, SO_REUSEADDR | SO_REUSEPORT,
&opt, sizeof(opt))),
"setsockopt");
struct sockaddr_in address;
int addrlen = sizeof(address);
address.sin_family = AF_INET;
address.sin_addr.s_addr = INADDR_ANY;
address.sin_port = htons(PORT);
// Forcefully attaching socket to the port PORT
assert(!(bind(server_fd, (struct sockaddr *)&address, sizeof(address)) < 0), "bind failed");
assert(!(listen(server_fd, 3) < 0), "listen");
int new_socket, valread;
char buffer[1024] = {0};
char *hello = "Hello from server";
struct messageInfoData info;
info.empty = 1;
while (1)
{
assert(!((new_socket = accept(server_fd, (struct sockaddr *)&address, (socklen_t *)&addrlen)) < 0), "accept");
valread = read(new_socket, buffer, 1024);
printf("Recieved: %s\n", buffer);
getMessageInfoData(buffer, info);
//Write response
//send response
}
return 0;
}