aboutsummaryrefslogtreecommitdiffstats
path: root/server.h
blob: ec8942c753ca489f0e303089fd2069793a0f4e19 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* SPDX-License-Identifier: MIT */
/*
 * Copyright (C) 2018 Wireguard LLC
 */

#ifndef SERVER_H
#define SERVER_H

#include <stdbool.h>

#define BASE_DYN_IP 0xc0a80100

bool is_wg_up_on_iface(const char iface[]);
int setup_server();
int handle_connections(int sock);

#endif