aboutsummaryrefslogtreecommitdiffstats
path: root/common.h
blob: b7ea13689a862308bba58aa75367d41fc74c7d54 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* SPDX-License-Identifier: MIT
 *
 * Copyright (C) 2019 WireGuard LLC. All Rights Reserved.
 */

#ifndef __COMMON_H__
#define __COMMON_H__

#include <stdint.h>

#define MAX_CONNECTIONS 16

static const char WG_DYNAMIC_ADDR[] = "fe80::";
static const uint16_t WG_DYNAMIC_PORT = 1337;

#endif