aboutsummaryrefslogtreecommitdiffstats
path: root/client.h
blob: 8dd35db065596311a4600055418ff6c118309080 (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 CLIENT_H
#define CLIENT_H

#include <stdbool.h>

bool is_server_in_allowed_ips(const char interface[]);
int connect_to_server();
void close_connection(int sock);

#endif