aboutsummaryrefslogtreecommitdiffstats
path: root/common.h
blob: d78154861f7df8c1f4fadbbf207cf78507a3a3a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* SPDX-License-Identifier: LGPL-2.1+
 *
 * Copyright (C) 2019 Thomas Gschwantner <tharre3@gmail.com>.
 */

#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