search for: dont_compress

Displaying 8 results from an estimated 8 matches for "dont_compress".

2011 Nov 28
0
RFC: [PATCH] Add TCP congestion control and Diffserv options
...+++++++++++++++++++++++ 3 files changed, 54 insertions(+), 0 deletions(-) diff --git a/loadparm.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; */ NU...
2001 Dec 28
1
(patch) memory leak in loadparm.c
...init(hosts_allow); + maybe_init(hosts_deny); + maybe_init(auth_users); + maybe_init(secrets_file); + maybe_init(exclude); + maybe_init(exclude_from); + maybe_init(include); + maybe_init(include_from); + maybe_init(log_format); + maybe_init(refuse_options); + maybe_init(dont_compress); +#undef maybe_init + } } /*************************************************************************** @@ -386,16 +410,9 @@ /** - * Assign a copy of @p v to @p *s. Handles NULL strings. @p *v must - * be initialized when this is called, either to NULL or a malloc'd - * string. - *...
2001 Dec 03
2
Bug in rsyncd 2.5.0 while handling config file string values
...y", gid = 0x807680c "nobody", hosts_allow = 0x0, hosts_deny = 0x0, auth_users = 0x0, secrets_file = 0x0, strict_modes = 1, exclude = 0x0, exclude_from = 0x0, include = 0x0, include_from = 0x0, log_format = 0x80767f3 "%o %h [%a] %m (%u) %f %l", refuse_options = 0x0, dont_compress = 0x80767c0 "*.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz", timeout = 0, max_connections = 0, ignore_nonreadable = 0} (gdb) shell cat ../rsyncd.conf uid = foobar (gdb) -- Heikki Vatiainen * hessu@cs.tut.fi Tampere University of Technology * Tampere, Finla...
2003 Mar 11
0
PATCH: rsyncd.conf permission options
...ctory mode */ }; @@ -295,6 +303,10 @@ {"log format", P_STRING, P_LOCAL, &sDefault.log_format, NULL, 0}, {"refuse options", P_STRING, P_LOCAL, &sDefault.refuse_options,NULL, 0}, {"dont compress", P_STRING, P_LOCAL, &sDefault.dont_compress,NULL, 0}, + {"create mask", P_OCTAL, P_LOCAL, &sDefault.create_mask, NULL, 0}, + {"force create mode", P_OCTAL, P_LOCAL, &sDefault.force_create_mode, NULL, 0}, + {"directory mask", P_OCTAL, P_LOCAL, &sDefault.directory_mask...
2003 Feb 12
2
rsync & ldap authentication
...connections,NULL, 0}, @@ -279,6 +310,13 @@ {"log format", P_STRING, P_LOCAL, &sDefault.log_format, NULL, 0}, {"refuse options", P_STRING, P_LOCAL, &sDefault.refuse_options,NULL, 0}, {"dont compress", P_STRING, P_LOCAL, &sDefault.dont_compress,NULL, 0}, + {"ldap filter", P_STRING, P_LOCAL, &sDefault.ldap_filter, NULL, 0}, + {"ldap passwd attribute",P_STRING,P_LOCAL,&sDefault.ldap_passwd_attribute,NULL,0}, + {"ldap auth usergroup",P_STRING,P_LOCAL, &sDefault.ldap_auth_usergroup, NULL...
2003 Jun 07
1
patch to rsync to add options for pre- and post-transfer commands
...***** *** 295,300 **** --- 300,307 ---- {"log format", P_STRING, P_LOCAL, &sDefault.log_format, NULL, 0}, {"refuse options", P_STRING, P_LOCAL, &sDefault.refuse_options,NULL, 0}, {"dont compress", P_STRING, P_LOCAL, &sDefault.dont_compress,NULL, 0}, + {"pretransfer script", P_STRING, P_LOCAL, &sDefault.prescript,NULL, 0}, + {"posttransfer script", P_STRING, P_LOCAL, &sDefault.postscript,NULL, 0}, {NULL, P_BOOL, P_NONE, NULL, NULL, 0} }; *******...
2003 May 03
0
Storing rsync secrets in LDAP
...connections,NULL, 0}, @@ -284,6 +315,13 @@ {"log format", P_STRING, P_LOCAL, &sDefault.log_format, NULL, 0}, {"refuse options", P_STRING, P_LOCAL, &sDefault.refuse_options,NULL, 0}, {"dont compress", P_STRING, P_LOCAL, &sDefault.dont_compress,NULL, 0}, + {"ldap filter", P_STRING, P_LOCAL, &sDefault.ldap_filter, NULL, 0}, + {"ldap passwd attribute",P_STRING,P_LOCAL,&sDefault.ldap_passwd_attribute,NULL,0}, + {"ldap auth usergroup",P_STRING,P_LOCAL, &sDefault.ldap_auth_usergroup, NULL...
2004 Mar 10
4
HFS+ resource forks: WIP patch included
...+} diff -u rsync-2.6.0/loadparm.c rsync-2.6.0-dar/loadparm.c --- rsync-2.6.0/loadparm.c Sat Dec 6 16:07:27 2003 +++ rsync-2.6.0-dar/loadparm.c Sat Mar 6 16:35:39 2004 @@ -135,6 +135,7 @@ char *include; char *include_from; char *log_format; + char *hfs_mode; char *refuse_options; char *dont_compress; int timeout; @@ -293,6 +294,7 @@ {"transfer logging", P_BOOL, P_LOCAL, &sDefault.transfer_logging,NULL,0}, {"ignore errors", P_BOOL, P_LOCAL, &sDefault.ignore_errors,NULL,0}, {"log format", P_STRING, P_LOCAL, &sDefault.log_for...