GitHub CI: update list of container images
[tinc] / src / names.h
index aef8b45..b3830e0 100644 (file)
@@ -1,7 +1,10 @@
+#ifndef TINC_NAMES_H
+#define TINC_NAMES_H
+
 /*
     names.h -- header for names.c
     Copyright (C) 1998-2005 Ivo Timmermans
-                  2000-2013 Guus Sliepen <guus@tinc-vpn.org>
+                  2000-2017 Guus Sliepen <guus@tinc-vpn.org>
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */
 
-#ifndef __TINC_NAMES_H__
-#define __TINC_NAMES_H__
+#include "system.h"
 
 extern char *confdir;
 extern char *confbase;
+extern bool confbase_given;
 extern char *netname;
+extern char *myname;
 extern char *identname;
+extern char *unixsocketname;
 extern char *logfilename;
 extern char *pidfilename;
 extern char *program_name;
 
-extern void make_names(void);
+extern void make_names(bool daemon);
 extern void free_names(void);
 
-#endif /* __TINC_NAMES_H__ */
+#endif