From 99d303ac2739e65a02fbbc325b74ad6fcac63cc2 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Fri, 5 Jun 2015 15:58:00 +0200 Subject: Initial commit --- src/tools/config.h | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/tools/config.h (limited to 'src/tools/config.h') diff --git a/src/tools/config.h b/src/tools/config.h new file mode 100644 index 0000000..268e3f6 --- /dev/null +++ b/src/tools/config.h @@ -0,0 +1,34 @@ +/* Copyright 2015-2016 Jason A. Donenfeld . All Rights Reserved. */ + +#ifndef CONFIG_H +#define CONFIG_H + +#include +#include +#include +#include +#include +#include +#include +#include "../uapi.h" + +struct inflatable_device { + struct wgdevice *dev; + size_t len; + size_t pos; +}; + +struct config_ctx { + struct inflatable_device buf; + size_t peer_offset; + struct wgdevice **device; + bool is_peer_section; + bool is_device_section; +}; + +bool config_read_cmd(struct wgdevice **dev, char *argv[], int argc); +bool config_read_init(struct config_ctx *ctx, struct wgdevice **device, bool append); +bool config_read_line(struct config_ctx *ctx, const char *line); +bool config_read_finish(struct config_ctx *ctx); + +#endif -- cgit v1.2.3-59-g8ed1b