diff options
author | Wayne Davison <wayned@samba.org> | 2005-09-03 16:24:23 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2005-09-03 16:24:23 +0000 |
commit | 18cad44967fbc8bc043c9ab8d00e4c704440bf21 (patch) | |
tree | af2f193c312dfe11e69b24b513d2a4763e9ed8d2 /loadparm.c | |
parent | d17c9a448655ff468749bb72552cc2bac6e13d0a (diff) | |
download | rsync-18cad44967fbc8bc043c9ab8d00e4c704440bf21.tar.gz rsync-18cad44967fbc8bc043c9ab8d00e4c704440bf21.tar.bz2 rsync-18cad44967fbc8bc043c9ab8d00e4c704440bf21.zip |
Added a per-module "temp dir" setting.
Diffstat (limited to 'loadparm.c')
-rw-r--r-- | loadparm.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -137,6 +137,7 @@ typedef struct char *prexfer_exec; char *refuse_options; char *secrets_file; + char *temp_dir; char *uid; int max_connections; @@ -176,6 +177,7 @@ static service sDefault = /* prexfer_exec */ NULL, /* refuse options */ NULL, /* secrets file */ NULL, + /* temp_dir */ NULL, /* uid */ NOBODY_USER, /* max connections */ 0, @@ -308,6 +310,7 @@ static struct parm_struct parm_table[] = {"refuse options", P_STRING, P_LOCAL, &sDefault.refuse_options, NULL,0}, {"secrets file", P_STRING, P_LOCAL, &sDefault.secrets_file, NULL,0}, {"strict modes", P_BOOL, P_LOCAL, &sDefault.strict_modes, NULL,0}, + {"temp dir", P_PATH, P_LOCAL, &sDefault.temp_dir, NULL,0}, {"timeout", P_INTEGER,P_LOCAL, &sDefault.timeout, NULL,0}, {"transfer logging", P_BOOL, P_LOCAL, &sDefault.transfer_logging, NULL,0}, {"uid", P_STRING, P_LOCAL, &sDefault.uid, NULL,0}, @@ -388,6 +391,7 @@ FN_LOCAL_STRING(lp_postxfer_exec, postxfer_exec) FN_LOCAL_STRING(lp_prexfer_exec, prexfer_exec) FN_LOCAL_STRING(lp_refuse_options, refuse_options) FN_LOCAL_STRING(lp_secrets_file, secrets_file) +FN_LOCAL_STRING(lp_temp_dir, temp_dir) FN_LOCAL_STRING(lp_uid, uid) FN_LOCAL_INTEGER(lp_max_connections, max_connections) |