-
Notifications
You must be signed in to change notification settings - Fork 0
/
socket_setup.c
48 lines (42 loc) · 1.24 KB
/
socket_setup.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
//
// Created by lemito on 5/15/24.
//
#include "socket_setup.h"
int setup_socket()
{
int sockfd = socket(AF_INET, SOCK_STREAM, 0);
if (sockfd == -1)
{
perror("Ошибка");
exit(EXIT_FAILURE);
}
puts("Сокет успешно создан");
// LOG("Сокет успешно создан");
return sockfd;
}
void setup_server(int sockfd)
{
struct sockaddr_in host_addr;
memset(&host_addr, 0, sizeof(host_addr));
unsigned int host_addr_len = sizeof(host_addr);
host_addr.sin_family = AF_INET;
host_addr.sin_port = htons(PORT);
host_addr.sin_addr.s_addr = htonl(INADDR_ANY);
if (bind(sockfd, (struct sockaddr *)&host_addr, host_addr_len))
{
perror("Не удалось связать адрес и сокет");
exit(EXIT_FAILURE);
}
puts("Связано успешно");
if (listen(sockfd, SOMAXCONN) != 0)
{
perror("Прослушивание неудачно");
exit(EXIT_FAILURE);
}
puts("Сервер запущен!");
printf("Сервер готов по адресу http://0.0.0.0:8080\n");
}
void shutdown_server(int sockfd) {
close(sockfd);
log_write("Сервер успешно остановлен.");
}