Support elliptic curves, and bigger hashes.
[become] / acconfig.h
index d108f96..607f3f0 100644 (file)
@@ -1,10 +1,10 @@
 /* -*-c-*-
  *
- * $Id: acconfig.h,v 1.1 1997/08/04 10:22:09 mdw Exp $
+ * $Id: acconfig.h,v 1.12 2004/04/08 01:36:20 mdw Exp $
  *
  * Default settings for `become' config.h
  *
- * (c) 1997 Mark Wooding
+ * (c) 1998 Mark Wooding
  */
 
 /*----- Licensing notice --------------------------------------------------*
  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  */
 
-/*----- Revision history --------------------------------------------------*
- *
- * $Log: acconfig.h,v $
- * Revision 1.1  1997/08/04 10:22:09  mdw
- * Sources placed under CVS control.
- *
- * Revision 1.1  1997/07/21  13:47:52  mdw
- * Initial revision
- *
- */
-
 #ifndef CONFIG_H
 #define CONFIG_H
 
 /*----- Variables set up by the configuration script ----------------------*/
 @TOP@
 
+/* My package name.  */
+#define PACKAGE "become"
+
 /* My version number.  */
-#define VERSION ???
+#define VERSION "1.2-pre"
 
 /* The `etcdir' contains configuration and state information.  */
-#define ETCDIR "/usr/local/etc"
+#define ETCDIR "/etc/become"
 
-/* Define to be the size of an int.  */
-#define SIZEOF_INT 4
+/* The `pidfile' is where Become puts its process id if it runs as a
+ * daemon. */
+#define file_PID "/etc/become/become.pid"
+
+/* Default login style can be `l_preserve', `l_setuser' or `l_login'.  */
+#define DEFAULT_LOGIN_STYLE l_preserve
 
 /* This is replaced by `/' by `configure' -- leave alone for DOSness.  */
 #define PATHSEP '\\'
 
+/* Define to turn off networking support.  */
+#undef NONETWORK
+
 /* Debugging options. */
-#undef TRACING
+#undef NTRACE
 
 #ifndef TEST_RIG
 #undef NDEBUG
 
 @BOTTOM@
 
-/*----- Some light processing on the configuration varaibles --------------*/
+/*----- Some light processing on the configuration variables --------------*/
 
 /* --- Important filenames based on the @ETCDIR@ --- */
 
 #define file_KEY ETCDIR "/become.key"
-#define file_PID ETCDIR "/become.pid"
-#define file_RANDSEED ETCDIR "/become.random"
+#define file_PUBKEY ETCDIR "/become.pubkey"
 #define file_RULES ETCDIR "/become.conf"
 #define file_SERVER ETCDIR "/become.server"
 
-/* --- Find a suitable 32-bit type --- */
-
-#if SIZEOF_INT < 4
-  typedef unsigned long uint_32;
-#else
-  typedef unsigned int uint_32;
-#endif
-
 /* --- Debugging macros --- */
 
 #ifdef NDEBUG