chiark / gitweb /
Allow admin clients to filter out async messages. Send notifications
[tripe] / acconfig.h
diff --git a/acconfig.h b/acconfig.h
deleted file mode 100644 (file)
index a36ff8e..0000000
+++ /dev/null
@@ -1,78 +0,0 @@
-/* -*-c-*-
- *
- * $Id: acconfig.h,v 1.6 2004/04/08 01:36:17 mdw Exp $
- *
- * Configuration header for TrIPE
- *
- * (c) 1999 Straylight/Edgeware
- */
-
-/*----- Licensing notice --------------------------------------------------* 
- *
- * This file is part of Trivial IP Encryption (TrIPE).
- *
- * TrIPE is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- * 
- * TrIPE is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- * 
- * You should have received a copy of the GNU General Public License
- * along with TrIPE; if not, write to the Free Software Foundation,
- * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-#ifndef ACCONFIG_H
-#define ACCONFIG_H
-
-#ifdef __cplusplus
-  extern "C" {
-#endif
-
-/*----- Autoconfiguration data --------------------------------------------*/
-@TOP@
-
-/* Package and version number.  */
-#define PACKAGE "tripe"
-#define VERSION "1.0.0"
-
-/* Define to disable the tracing options.  This might improve performance a
- * little bit, and can prevent sensitive information from being leaked if
- * you're in the habit of typing things like `tripectl trace A' by
- * accident.  */
-#undef NTRACE
-
-/* Define according to the type of tunneling interface appropriate for your
- * system.  Linux types should say `TUN_LINUX' for the TUN/TAP driver if
- * using kernel 2.4.0 or later, or say `TUN_UNET' for 2.2-series kernels and
- * build the `usernet' module.  BSD types should say `TUN_BSD' to use the
- * built-in `tun' devices.  */
-#undef TUN_TYPE
-
-/* Define this to your default configuration directory.  This is where
- * tripe searches for keys and other stuff.  */
-#define CONFIGDIR "."
-
-/* Define this to the directory in which tripe's admin socket is to be
- * placed.  Common choices are `.' -- the tripe configuration directory --
- * and /var/run.  */
-#define SOCKETDIR "."
-
-/* Define if your Ethereal plugin headers are broken (e.g., Debian 3.0) but
- * you're running some sensible ELF system, and I should try to bodge around
- * the damage.  */
-#undef ETHEREAL_BUGGERED
-
-@BOTTOM@
-
-/*----- That's all, folks -------------------------------------------------*/
-
-#ifdef __cplusplus
-  }
-#endif
-
-#endif