diff options
author | Ondrej Filip <feela@network.cz> | 2004-06-06 17:05:25 +0000 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2004-06-06 17:05:25 +0000 |
commit | 41c8976e29bbf2986b063d1a8c5c8b386fae500e (patch) | |
tree | 129af3a1bde01335521a831a988472c4c963f3b1 /sysdep/config.h | |
parent | cd09226078471cf9a2db4e755fbd5f6f137137c9 (diff) |
Test old instance of BIRD.
Diffstat (limited to 'sysdep/config.h')
-rw-r--r-- | sysdep/config.h | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/sysdep/config.h b/sysdep/config.h index 4e2e8e75..95b20d4b 100644 --- a/sysdep/config.h +++ b/sysdep/config.h @@ -36,12 +36,22 @@ typedef u16 word; #endif /* Path to configuration file */ -#ifdef DEBUGGING -#define PATH_CONFIG "bird.conf" -#define PATH_CONTROL_SOCKET "bird.ctl" +#ifdef IPV6 +# ifdef DEBUGGING +# define PATH_CONFIG "bird-6.conf" +# define PATH_CONTROL_SOCKET "bird-6.ctl" +# else +# define PATH_CONFIG PATH_CONFIG_DIR "/bird-6.conf" +# define PATH_CONTROL_SOCKET PATH_CONTROL_SOCKET_DIR "/bird-6.ctl" +# endif #else -#define PATH_CONFIG PATH_CONFIG_DIR "/bird.conf" -#define PATH_CONTROL_SOCKET PATH_CONTROL_SOCKET_DIR "/bird.ctl" +# ifdef DEBUGGING +# define PATH_CONFIG "bird.conf" +# define PATH_CONTROL_SOCKET "bird.ctl" +# else +# define PATH_CONFIG PATH_CONFIG_DIR "/bird.conf" +# define PATH_CONTROL_SOCKET PATH_CONTROL_SOCKET_DIR "/bird.ctl" +# endif #endif #endif |