diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-02-12 20:26:20 +1300 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2006-02-12 20:26:20 +1300 |
commit | 5ebe625399d5116e222d6389434f645e906265ec (patch) | |
tree | 91a48ae6564ed891a23b1f5de2f630185fd0b39d /conf.h | |
parent | a323a22773714a19254db34156500a67e5916451 (diff) | |
parent | 58bc4e69967a8feec0a60dfab716985191c12817 (diff) |
Merge
Diffstat (limited to 'conf.h')
-rw-r--r-- | conf.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -26,7 +26,7 @@ #ifndef __CONF_H #define __CONF_H -typedef enum runmode { RUNMODE_DAEMON, RUNMODE_INETD } runmode_t; +typedef enum runmode { RUNMODE_DAEMON, RUNMODE_FORKDAEMON, RUNMODE_INETD } runmode_t; typedef enum authmode { AUTHMODE_OPEN, AUTHMODE_CLOSED, AUTHMODE_REGISTERED } authmode_t; typedef struct conf @@ -37,10 +37,12 @@ typedef struct conf int verbose; runmode_t runmode; authmode_t authmode; - char *password; + char *auth_pass; + char *oper_pass; char *hostname; char *configdir; char *plugindir; + char *pidfile; char *motdfile; char *primary_storage; char **migrate_storage; |