aboutsummaryrefslogtreecommitdiff
path: root/networking/atlasinit.h
diff options
context:
space:
mode:
authorBjørn Mork <bjorn@mork.no>2016-01-20 18:46:57 +0100
committerBjørn Mork <bjorn@mork.no>2016-01-20 18:46:57 +0100
commit7f8d8aa7a9e542524e9edfcca1fe1220abbf8e40 (patch)
tree3e8f99b8bc981a3254e3c78b84fedfa883ad8f9a /networking/atlasinit.h
parentf8271f58d0f47f7a7ffa787512c227982eb4d6f2 (diff)
ripe-atlas-fw: imported version 47204720
Signed-off-by: Bjørn Mork <bjorn@mork.no>
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