Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | minor typo fix, no code changes. |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
bd7daa1f2db2ff2eb26bed38b5252291 |
| User & Date: | stephan 2013-09-11 19:53:30.821 |
Context
|
2013-09-24
| ||
| 16:11 | merged in trunk Closed-Leaf check-in: 4fb3675a1a user: stephan tags: usage-command | |
|
2013-09-11
| ||
| 20:11 | typo and unnecessary "align=center" check-in: 53e004254a user: jan.nijtmans tags: trunk | |
| 19:53 | minor typo fix, no code changes. check-in: bd7daa1f2d user: stephan tags: trunk | |
| 13:15 | Use the new -DSQLITE_WIN32_NO_ANSI C-flag from SQLite 3.8.1. This eliminates all osIsNT() calls on Win32 and Cygwin in SQLite. (Fossil doesn't run on Win95/98/ME anyway) check-in: c2fa007451 user: jan.nijtmans tags: trunk | |
Changes
Changes to src/xfer.c.
| ︙ | ︙ | |||
43 44 45 46 47 48 49 | int nIGotSent; /* Number of "igot" cards sent */ int nGimmeSent; /* Number of gimme cards sent */ int nFileSent; /* Number of files sent */ int nDeltaSent; /* Number of deltas sent */ int nFileRcvd; /* Number of files received */ int nDeltaRcvd; /* Number of deltas received */ int nDanglingFile; /* Number of dangling deltas received */ | | | 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | int nIGotSent; /* Number of "igot" cards sent */ int nGimmeSent; /* Number of gimme cards sent */ int nFileSent; /* Number of files sent */ int nDeltaSent; /* Number of deltas sent */ int nFileRcvd; /* Number of files received */ int nDeltaRcvd; /* Number of deltas received */ int nDanglingFile; /* Number of dangling deltas received */ int mxSend; /* Stop sending "file" when pOut reaches this size */ int resync; /* Send igot cards for all holdings */ u8 syncPrivate; /* True to enable syncing private content */ u8 nextIsPrivate; /* If true, next "file" received is a private */ time_t maxTime; /* Time when this transfer should be finished */ }; |
| ︙ | ︙ |