Fossil

Changes On Branch xferSumFmt
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Changes In Branch xferSumFmt Excluding Merge-Ins

This is equivalent to a diff from 1e21daceca to 8c00f6f032

2015-01-23
17:57
Slightly 'improve' summary line for push/pull/sync operations. check-in: 942dd0bb08 user: mistachkin tags: trunk
17:48
Merge updates from trunk. Closed-Leaf check-in: 8c00f6f032 user: mistachkin tags: xferSumFmt
17:13
Add new commands: test-var-list, test-var-get, and test-var-set. The original motivation was to make it easier to insert "css", "header", and "footer" values that people send in, but these commands seem useful for other kinds of experimentation. The are "test-*" commands because they are not intended to be accessed by ordinary users. check-in: 1e21daceca user: drh tags: trunk
14:31
Fix comment and error-message check-in: 9a07b24935 user: jan.nijtmans tags: trunk
05:41
Slightly 'improve' summary line for push/pull/sync operations. check-in: dbf93c23f7 user: mistachkin tags: xferSumFmt

Changes to src/xfer.c.

1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
     fossil_warning("*** time skew *** server is slow by %s",
                    db_timespan_name(-rSkew));
     g.clockSkewSeen = 1;
  }

  fossil_force_newline();
  fossil_print(
     "Total bytes sent: %lld  received: %lld  ip: %s\n",
      nSent, nRcvd, g.zIpAddr);
  transport_close(&g.url);
  transport_global_shutdown(&g.url);
  if( nErr && go==2 ){
    db_multi_exec("DROP TABLE onremote");
    manifest_crosslink_end(MC_PERMIT_HOOKS);
    content_enable_dephantomize(1);
    db_end_transaction(0);
  }
  return nErr;
}







|
|










1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
     fossil_warning("*** time skew *** server is slow by %s",
                    db_timespan_name(-rSkew));
     g.clockSkewSeen = 1;
  }

  fossil_force_newline();
  fossil_print(
     "%s done, sent: %lld  received: %lld  ip: %s\n",
     zOpType, nSent, nRcvd, g.zIpAddr);
  transport_close(&g.url);
  transport_global_shutdown(&g.url);
  if( nErr && go==2 ){
    db_multi_exec("DROP TABLE onremote");
    manifest_crosslink_end(MC_PERMIT_HOOKS);
    content_enable_dephantomize(1);
    db_end_transaction(0);
  }
  return nErr;
}