Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Another correction to the xfer status counters. |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
04b9b0136daec1bcb6b5e088e8f09120 |
| User & Date: | drh 2025-05-12 12:17:45.726 |
Context
|
2025-05-14
| ||
| 13:20 | Update the unix makefile to correct a dependency problem discovered by --shuffle=reverse in Gnu make. check-in: ae137399cb user: drh tags: trunk | |
| 10:43 | Updates to the unix makefile so that it works with Gnu-make 4.4 and later with --shuffle=reverse. [forum:/forumpost/664f41bf733c019a|forum thread 664f41bf7] Closed-Leaf check-in: 70464b4032 user: drh tags: shuffle-reverse | |
|
2025-05-12
| ||
| 12:17 | Another correction to the xfer status counters. check-in: 04b9b0136d user: drh tags: trunk | |
| 12:05 | Move the increment of the round-trip counter for sync. check-in: dca483a80c user: drh tags: trunk | |
Changes
Changes to src/xfer.c.
| ︙ | ︙ | |||
2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 |
** first successful round-trip */
if( nCycle==0 && db_is_writeable("repository") ){
xfer_syncwith(g.url.canonical, 0);
}
/* Output current stats */
nRoundtrip++;
if( syncFlags & SYNC_VERBOSE ){
fossil_print(zValueFormat /*works-like:"%s%d%d%d%d"*/, "Sent:",
blob_size(&send), nCardSent+xfer.nGimmeSent+xfer.nIGotSent,
xfer.nFileSent, xfer.nDeltaSent);
}else{
| > < | 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 |
** first successful round-trip */
if( nCycle==0 && db_is_writeable("repository") ){
xfer_syncwith(g.url.canonical, 0);
}
/* Output current stats */
nRoundtrip++;
nArtifactSent += xfer.nFileSent + xfer.nDeltaSent;
if( syncFlags & SYNC_VERBOSE ){
fossil_print(zValueFormat /*works-like:"%s%d%d%d%d"*/, "Sent:",
blob_size(&send), nCardSent+xfer.nGimmeSent+xfer.nIGotSent,
xfer.nFileSent, xfer.nDeltaSent);
}else{
if( bOutIsTty!=0 ){
fossil_print(zBriefFormat /*works-like:"%d%d%d"*/,
nRoundtrip, nArtifactSent, nArtifactRcvd);
}
}
nCardSent = 0;
nCardRcvd = 0;
|
| ︙ | ︙ |