Displaying 4 results from an estimated 4 matches for "default_dont_compress".
2018 Feb 01
0
[Bug 13248] New: Updates for DEFAULT_DONT_COMPRESS suffix list
https://bugzilla.samba.org/show_bug.cgi?id=13248
            Bug ID: 13248
           Summary: Updates for DEFAULT_DONT_COMPRESS suffix list
           Product: rsync
           Version: 3.1.3
          Hardware: All
                OS: All
            Status: NEW
          Severity: enhancement
          Priority: P5
         Component: core
          Assignee: wayned at samba.org
          Reporter: knowledgejunkie at gmai...
2019 Jan 16
1
[Bug 13749] New: Add more extensions to DEFAULT_DONT_COMPRESS
https://bugzilla.samba.org/show_bug.cgi?id=13749
            Bug ID: 13749
           Summary: Add more extensions to DEFAULT_DONT_COMPRESS
           Product: rsync
           Version: 3.1.3
          Hardware: All
                OS: All
            Status: NEW
          Severity: enhancement
          Priority: P5
         Component: core
          Assignee: wayne at opencoder.net
          Reporter: paul at debian.org
        QA Co...
2009 Oct 22
1
DO NOT REPLY [Bug 6839] New: more dont compress entries
...Status: NEW
          Severity: enhancement
          Priority: P3
         Component: core
        AssignedTo: wayned at samba.org
        ReportedBy: karl at freefriends.org
         QAContact: rsync-qa at samba.org
I'd like to suggest adding more entries to the default dont compress list
(DEFAULT_DONT_COMPRESS in loadparm.c), namely:
.xz .txz  (http://tukaani.org/xz/, new fmt replacing lzma and 7zip)
.lz .tlz  (http://lzip.nongnu.org, another fmt along those lines)
xz is being used in rpm payloads these days, among other places.
It compresses better than bz2 and typically decompresses at about the spee...
2011 Nov 28
0
RFC: [PATCH] Add TCP congestion control and Diffserv options
...ax_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_COMPRESS,
  /* exclude; */			NULL,
  /* exclude_from; */		NULL,
@@ -212,6 +215,7 @@ static const all_vars Defaults = {
  /* max_verbosity; */		1,
  /* syslog_facility; */		LOG_DAEMON,
  /* timeout; */			0,
+ /* diffserv; */		8,
 
  /* fake_super; */		False,
  /* forward_lookup; */		True,
@@ -322,6 +326,8 @@...