aboutsummaryrefslogtreecommitdiff
path: root/networking/atlasinit.h
diff options
context:
space:
mode:
Diffstat (limited to 'networking/atlasinit.h')
-rw-r--r--networking/atlasinit.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/networking/atlasinit.h b/networking/atlasinit.h
deleted file mode 100644
index f7362a6..0000000
--- a/networking/atlasinit.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/* RIPEAtlas
- * All the configurable variables - and some non configurables too
- * $Id: $
- */
-
-#ifndef _ATLASINIT_H
-#define _ATLASINIT_H
-
-#define ATLAS_BUF_SIZE 1024
-#define MAX_READ ATLAS_BUF_SIZE-2 /* should be enough to read controller keys */
-
-/*********************************************************************
- * Set these constants to your liking
- */
-
-extern const char atlas_log_file[];
-extern const int atlas_log_level;
-
-extern const char atlas_contr_known_hosts[];
-extern const char atlas_rereg_timestamp[];
-
-extern const int max_lines; /* maximum lines we'll process */
-extern const int min_rereg_time; /* 12h */
-extern const int max_rereg_time; /* 28d */
-extern const int default_rereg_time; /* 7d */
-
-/*********************************************************************/
-
-enum { ALL, DEBUG, INFO, WARN, ERROR } error_level;
-
-void atlas_log( int level, const char *msg, ... );
-
-#endif