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

#ifndef SERVER_H
#define SERVER_H

#include <stdbool.h>

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

#endif