syncthing/internal
Jakob Borg 2c8b627008 Integer type policy
Integers are for numbers, enabling arithmetic like subtractions and for
loops without getting shot in the foot. Unsigneds are for bitfields.

- "int" for numbers that will always be laughably smaller than four
  billion, and where we don't care about the serialization format.

- "int32" for numbers that will always be laughably smaller than four
  billion, and will be serialized to four bytes.

- "int64" for numbers that may approach four billion or will be
  serialized to eight bytes.

- "uint32" and "uint64" for bitfields, depending on required number of
  bits and serialization format. Likewise "uint8" and "uint16", although
  rare in this project since they don't exist in XDR.

- "int8", "int16" and plain "uint" are almost never useful.
2015-01-19 10:34:36 -08:00
..
auto Add File Versioning to folder info (fixes #963) 2015-01-15 15:50:49 +01:00
beacon Use more inclusive copyright header 2014-11-17 12:54:42 +01:00
config Cleanup temporary files (fixes #1239) 2015-01-18 20:34:47 +00:00
db Integer type policy 2015-01-19 10:34:36 -08:00
discover Refactor out protocol and luhn (protocol dependency) packages 2015-01-13 13:22:56 +01:00
events Integer type policy 2015-01-19 10:34:36 -08:00
fnmatch Escape plus sign (fixes #1090) 2014-12-07 00:10:32 +00:00
ignore Refactor ignore handling (...) 2014-12-23 10:46:02 +01:00
lamport Integer type policy 2015-01-19 10:34:36 -08:00
model Integer type policy 2015-01-19 10:34:36 -08:00
osutil Efficient renames (fixes #1217) 2015-01-13 22:06:13 +00:00
scanner Integer type policy 2015-01-19 10:34:36 -08:00
stats Refactor out protocol and luhn (protocol dependency) packages 2015-01-13 13:22:56 +01:00
symlinks Refactor out protocol and luhn (protocol dependency) packages 2015-01-13 13:22:56 +01:00
upgrade Cleanup temporary files (fixes #1239) 2015-01-18 20:34:47 +00:00
upnp Properly handle absolute URLs when parsing UPnP service control URLs 2015-01-07 21:23:20 -08:00
versioner Silence versioner warnings for unmatched files (fixes #1117) 2014-12-30 22:43:07 +00:00