Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix for the "-u" option on clone - make sure at least three round-trips occur as it takes that many to get the UV transfer started. |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
16306153c09dd89f5a8f1e29ac88ad65 |
| User & Date: | drh 2016-09-19 14:50:54.600 |
Context
|
2016-09-19
| ||
| 18:48 | Remove the unused uvStatus variable from the client-side sync implementation. check-in: 515229c5cd user: drh tags: trunk | |
| 17:50 | Merge updates from trunk. Closed-Leaf check-in: 8fbd5fb661 user: mistachkin tags: autosetupAndJimTcl | |
| 14:50 | Fix for the "-u" option on clone - make sure at least three round-trips occur as it takes that many to get the UV transfer started. check-in: 16306153c0 user: drh tags: trunk | |
| 14:09 | Fix another typo in the server.wiki documentation. check-in: a1b50dad22 user: drh tags: trunk | |
Changes
Changes to src/xfer.c.
| ︙ | ︙ | |||
2371 2372 2373 2374 2375 2376 2377 |
** on a clone in order to be sure to retrieve the configuration
** information which is only sent on the second round.
*/
if( cloneSeqno<=0 && nCycle>1 ) go = 0;
/* Continue looping as long as new uvfile cards are being received
** and uvgimme cards are being sent. */
| | | 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 |
** on a clone in order to be sure to retrieve the configuration
** information which is only sent on the second round.
*/
if( cloneSeqno<=0 && nCycle>1 ) go = 0;
/* Continue looping as long as new uvfile cards are being received
** and uvgimme cards are being sent. */
if( nUvGimmeSent>0 && (nUvFileRcvd>0 || nCycle<3) ) go = 1;
db_multi_exec("DROP TABLE onremote");
if( go ){
manifest_crosslink_end(MC_PERMIT_HOOKS);
}else{
manifest_crosslink_end(MC_PERMIT_HOOKS);
content_enable_dephantomize(1);
|
| ︙ | ︙ |