blob: 388dbae1d9f7750dddad610324b13922789c0f6c (
plain)
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
|
/* server.h
* (c) Jonas Gunz, 2020
* License: MIT
* */
#pragma once
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/ip.h>
#include <arpa/inet.h>
#include <unistd.h>
#include <signal.h>
#include "dns.h"
#include "log.h"
#define UDP_BUFFER_LEN 512
static int sock_server;
void run_dns_server ( void );
int handle_connection ( int _socket,
struct sockaddr_in *sockaddr_client,
socklen_t sockaddr_client_len,
char* _buffer,
int _bufflen );
void signal_term ( );
|