search for: max_verbosity

Displaying 3 results from an estimated 3 matches for "max_verbosity".

2004 Sep 28
1
[Patch] rsync-2.6.2: Allow 'port = N' in rsyncd.conf
...-------- next part -------------- Only in rsync-dmn/lib: dummy diff --unified -r rsync-2.6.2/loadparm.c rsync-dmn/loadparm.c --- rsync-2.6.2/loadparm.c Wed Feb 4 02:31:29 2004 +++ rsync-dmn/loadparm.c Tue Sep 28 12:56:51 2004 @@ -104,6 +104,7 @@ char *socket_options; int syslog_facility; int max_verbosity; + int rsync_port; } global; static global Globals; @@ -269,6 +270,7 @@ {"log file", P_STRING, P_GLOBAL, &Globals.log_file, NULL, 0}, {"pid file", P_STRING, P_GLOBAL, &Globals.pid_file, NULL, 0}, {"max verbosity", P...
2011 Nov 28
0
RFC: [PATCH] Add TCP congestion control and Diffserv options
....c b/loadparm.c index 965b771..51b1b06 100644 --- a/loadparm.c +++ b/loadparm.c @@ -109,6 +109,7 @@ typedef struct { char *auth_users; char *charset; char *comment; + char *congestion_alg; char *dont_compress; char *exclude; char *exclude_from; @@ -138,6 +139,7 @@ typedef struct { int max_verbosity; int syslog_facility; int timeout; + int diffserv; BOOL fake_super; BOOL forward_lookup; @@ -185,6 +187,7 @@ static const all_vars Defaults = { /* auth_users; */ NULL, /* charset; */ NULL, /* comment; */ NULL, + /* congestion_alg; */ NULL, /* dont_compress; */ DEFAULT_DONT...
2007 Oct 10
0
patch for rsync: provides "nice = N" option
...e); + + /* but we keep going */ + } + + if (lp_temp_dir(i) && *lp_temp_dir(i)) { tmpdir = lp_temp_dir(i); if (strlen(tmpdir) >= MAXPATHLEN - 10) { --- loadparm.c.orig 2007-08-19 07:28:25.000000000 +0000 +++ loadparm.c 2007-08-19 07:39:00.000000000 +0000 @@ -149,6 +149,7 @@ int max_verbosity; int syslog_facility; int timeout; + int niceval; BOOL ignore_errors; BOOL ignore_nonreadable; @@ -196,6 +197,7 @@ /* max_verbosity; */ 1, /* syslog_facility; */ LOG_DAEMON, /* timeout; */ 0, + /* nice; */ 0, /* ignore_errors; */ False, /* ignore_nonreadable; */ False,...