]> git.meshlink.io Git - meshlink/blobdiff - lib/utils.h
Added some structures and types that are needed for the overhaul.
[meshlink] / lib / utils.h
index ed6550dc061b68a7c756721912a9497e7b3443de..9184a33948134e7be4df0e7554d4faec6257d71a 100644 (file)
 #ifndef __TINC_UTILS_H__
 #define __TINC_UTILS_H__
 
+enum {
+  DEBUG_CONNECTIONS = 0,
+  DEBUG_PROTOCOL,
+  DEBUG_STATUS,
+  DEBUG_error,
+  DEBUG_META
+};
+
 #define min(a,b) (((a)<(b))?(a):(b))
 
 #define cp { cp_line = __LINE__; cp_file = __FILE__; }