]> git.meshlink.io Git - meshlink/blobdiff - src/list.h
Remove disconnect code from autoconnect because it makes the mesh flapping
[meshlink] / src / list.h
index 0437bd9297ebe86c54e16767a442091db497b76f..c99082844916e210770c7ede8ba7552e93389b19 100644 (file)
@@ -1,7 +1,6 @@
 /*
     list.h -- header file for list.c
-    Copyright (C) 2000-2005 Ivo Timmermans
-                  2000-2012 Guus Sliepen <guus@tinc-vpn.org>
+    Copyright (C) 2014 Guus Sliepen <guus@meshlink.io>
 
     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
@@ -18,8 +17,8 @@
     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */
 
-#ifndef __TINC_LIST_H__
-#define __TINC_LIST_H__
+#ifndef __MESHLINK_LIST_H__
+#define __MESHLINK_LIST_H__
 
 typedef struct list_node_t {
        struct list_node_t *prev;
@@ -81,4 +80,4 @@ extern void list_foreach_node(list_t *, list_action_node_t);
 
 #define list_each(type, item, list) (type *item = (type *)1; item; item = NULL) for(list_node_t *node = (list)->head, *next; item = node ? node->data : NULL, next = node ? node->next : NULL, node; node = next)
 
-#endif /* __TINC_LIST_H__ */
+#endif /* __MESHLINK_LIST_H__ */