Jakob Borg
633e888ba7
Add 'lib/relaysrv/' from commit '6e126fb97e2ff566d35f8d8824e86793d22b2147'
...
git-subtree-dir: lib/relaysrv
git-subtree-mainline: 4316992d95
git-subtree-split: 6e126fb97e
2015-09-22 19:34:52 +02:00
Jakob Borg
4316992d95
Add 'lib/protocol/' from commit 'f91191218b192ace841c878f161832d19c09145a'
...
git-subtree-dir: lib/protocol
git-subtree-mainline: 5ecb8bdd8a
git-subtree-split: f91191218b
2015-09-22 19:34:29 +02:00
Jakob Borg
5ecb8bdd8a
Correct success/error handling for multicast/broadcast sends
2015-09-22 16:04:48 +02:00
Jakob Borg
3b81d4b8a5
Update suture for data race bug
2015-09-21 15:48:37 +02:00
Jakob Borg
6e3b3dc4e7
Comment typo fix
2015-09-21 14:20:33 +02:00
Jakob Borg
8d421a62d2
Usage reporting should recognize new discovery server IP:s
2015-09-21 10:54:21 +02:00
Jakob Borg
185b0690c8
Further forgotten copyright notices
2015-09-21 10:43:36 +02:00
Jakob Borg
bd0e97023e
We don't need a separate subscription lock
...
We forgot to lock it during replace, so data rate. This is simpler.
2015-09-21 10:42:07 +02:00
Jakob Borg
34ff0706a3
Add missing copyright notice
2015-09-21 10:34:20 +02:00
Jakob Borg
acba61babb
Ping handling changes in protocol, removed from config here
2015-09-21 10:14:27 +02:00
Jakob Borg
05c79ac8c2
Simplify and improve the ping mechanism
...
This should resolve the spurious ping timeouts we've had on low powered
boxes. Those errors are the result of us requiring a timely Pong
response to our Pings. However this is unnecessarily strict - as long as
we've received *anything* recently, we know the other peer is alive. So
the new mechanism removes the Pong message entirely and separates the
ping check into two routines:
- One that makes sure to send ping periodically, if nothing else has
been sent. This guarantees a message sent every 45-90 seconds.
- One that checks how long it was since we last received a message. If
it's longer than 300 seconds, we trigger an ErrTimeout.
So we're guaranteed to detect a connection failure in 300 + 300/2
seconds (due to how often the check runs) and we may detect it much
sooner if we get an actual error on the ping write (a connection reset
or so).
This is more sluggish than before but I think that's an OK price to pay
for making it actually work out of the box.
This removes the configurability of it, as the timeout on one side is
dependent on the send interval on the other side. Do we still need it
configurable?
2015-09-21 08:51:42 +02:00
Jakob Borg
24d2a93c0d
Change default discovery server names
2015-09-20 22:30:31 +02:00
Jakob Borg
b0cd7be39b
New global discovery protocol over HTTPS ( fixes #628 , fixes #1907 )
2015-09-20 21:10:53 +02:00
Jakob Borg
a7169a6348
Add AppVeyor for Windows builds
2015-09-20 15:18:50 +02:00
Jakob Borg
22783d8f6c
Connected clients should know their own latency
2015-09-20 13:40:24 +02:00
Jakob Borg
1d710bdcd9
Update lang-en.json
2015-09-18 14:11:01 +02:00
Jakob Borg
7e3c06191e
lib/relay need not depend on lib/model any more
2015-09-14 20:19:39 +02:00
Jakob Borg
372c96c6b2
Merge pull request #5 from syncthing/info
...
Tweaks
2015-09-14 16:20:08 +02:00
Jakob Borg
fccb9c0bf4
Server should respond to ping
2015-09-14 13:46:20 +02:00
Jakob Borg
596a49c112
Invert initialization dependence on relay/conns
...
This makes it so we can initialize the relay management and then give
that to the connection management, instead of the other way around.
This is important to me in the discovery revamp I'm doing, as otherwise
I get a circular dependency when constructing stuff, with relaying
depending on connection, connection depending on discovery, and
discovery depending on relaying.
With this fixed, discovery will depend on relaying, and connection will
depend on both discovery and relaying.
2015-09-14 10:21:55 +02:00
Jakob Borg
95fc253d6b
Rename externalAddr to addressLister
...
It's going to have to list internal addresses too.
2015-09-13 18:09:44 +02:00
Jakob Borg
e6d5372029
Fix -no-upgrade
2015-09-13 18:04:58 +02:00
Jakob Borg
8e5c692244
Merge pull request #2269 from calmh/externaladdr
...
Add external address tracker object
2015-09-13 17:39:51 +02:00
Jakob Borg
e694c664e5
Add external address tracker object
2015-09-13 07:56:13 +02:00
Jakob Borg
1f0f5c1e23
Don't require free disk space when we might only update metadata
...
Instead, make sure we do the check as part of CheckFolderHealth before
pulling, and individually per file to try to not run out of space at
that stage.
(The latter is far from fool proof as we may pull lots of stuff in
parallell, but it's worth a try.)
2015-09-12 23:00:43 +02:00
Jakob Borg
fa95c82daf
Add custom networks that are considered local (internal routing, VPN etc)
...
Allows things like this in the <options> element:
<alwaysLocalNet>10.0.0.0/8</alwaysLocalNet>
2015-09-11 15:10:41 +02:00
Jakob Borg
446a938b06
lib/symlinks need not depend on protocol
2015-09-11 12:55:25 +02:00
Jakob Borg
985a3436e2
Always show columns headers (accessibility)
2015-09-10 15:05:08 +02:00
Jakob Borg
9dae87c80c
Allow configuration of releases URL
2015-09-10 14:16:44 +02:00
Jakob Borg
46364a38c6
Allow configuration of usage reporting URL
2015-09-10 14:08:40 +02:00
Jakob Borg
148b2b9d02
Fix crash when relaying or global discovery is disabled ( fixes #2246 )
2015-09-09 12:58:57 +02:00
Jakob Borg
64354b51c9
Generate certs with SHA256 signature instead of SHA1
...
Doesn't matter at all for BEP, but the same stuff is used by the web UI
and modern browsers are starting to dislike SHA1 extra much.
2015-09-09 12:55:17 +02:00
Jakob Borg
36b8a75ede
Relay server info, urVersion in ur
2015-09-06 21:15:46 +02:00
Jakob Borg
baf231e3b6
Add interesting fields to usage report ( fixes #559 )
2015-09-06 18:17:30 +02:00
Jakob Borg
e26e85b6d6
Only check pull file size if check is enabled (ref #2241 )
2015-09-06 17:13:00 +02:00
Jakob Borg
2af3a92833
Allow fractional percentages ( fixes #2233 )
2015-09-05 12:39:15 +02:00
Jakob Borg
d2af6dcf38
CircleCI just plain doesn't work for us.
2015-09-04 15:31:03 +02:00
Jakob Borg
dd6b66167e
Ok, last attempt now.
2015-09-04 15:17:23 +02:00
Jakob Borg
51a4a88a81
Dammit,CircleCI
2015-09-04 14:59:32 +02:00
Jakob Borg
516efb21cf
Seriously CircleCI, come on...
2015-09-04 14:53:10 +02:00
Jakob Borg
2d4397af53
Clean out before build/test on CircleCI
2015-09-04 14:39:22 +02:00
Jakob Borg
06f319a380
lib/stats need not depend on protocol
2015-09-04 13:23:18 +02:00
Jakob Borg
37ed5a01e0
Fix sudden nil pointer dereference in walk
2015-09-04 13:13:08 +02:00
Jakob Borg
4a9997e449
lib/db need not depend on lib/config
2015-09-04 12:01:00 +02:00
Jakob Borg
54269553c8
lib/scanner need not depend on lib/ignore
2015-09-04 11:50:47 +02:00
Jakob Borg
2581e56503
Use raw strings to describe regexes, avoids double escaping
2015-09-02 22:19:45 +02:00
Jakob Borg
fea0ae7f2f
Merge pull request #2225 from AudriusButkevicius/onerelay
...
Pick a single relay (fixes #2182 )
2015-09-02 22:15:00 +02:00
Jakob Borg
e3e1036dda
Correctly handle (?i) in ignores ( fixes #1953 )
2015-09-02 21:12:41 +02:00
Jakob Borg
70b37dc469
Add specific build setup for CircleCI
2015-09-02 14:56:16 +02:00
Jakob Borg
6393f69138
Second opinion build status via Circleci
2015-09-02 11:57:53 +02:00
Jakob Borg
02493251d5
Adjust defaults for number of hashers based on OS
...
https://forum.syncthing.net/t/syncthing-is-such-a-massive-resource-hog/5494/19?u=calmh
2015-09-01 10:30:35 +02:00
Jakob Borg
ff04648112
Remove leftovers from signing
2015-08-31 17:46:48 +02:00
Jakob Borg
55002d7adf
Signing is done by stsigtool only
2015-08-30 20:50:07 +02:00
Jakob Borg
0664c6b5b0
Translation & docs update
2015-08-30 14:38:47 +02:00
Jakob Borg
a4ebac147b
Harmonize rendering of identicons with other icons ( fixes #2212 )
2015-08-30 14:25:11 +02:00
Jakob Borg
84365882de
Fix tests
2015-08-28 09:01:21 +02:00
Jakob Borg
37fb6473b3
Woops, fix scanner test
2015-08-28 08:57:37 +02:00
Jakob Borg
ba676f2810
Dividing by zero is frowned upon
2015-08-27 21:41:39 +02:00
Jakob Borg
b3d7c622c3
Show folder scan progress in -verbose, hide local index updates
2015-08-27 21:37:41 +02:00
Jakob Borg
bc016e360e
Refactor: ints used in arithmetic should be signed
2015-08-27 21:37:12 +02:00
Jakob Borg
594918dd3c
Line height on headers to avoid cut off descenders
2015-08-27 21:28:07 +02:00
Jakob Borg
ec5feb41e8
Merge remote-tracking branch 'syncthing/pr/2200'
...
* syncthing/pr/2200:
Add scan percentages (fixes #1030 )
2015-08-27 21:25:45 +02:00
Jakob Borg
d63e54237b
Allow -logfile on all platforms ( fixes #2004 )
2015-08-27 19:11:10 +02:00
Jakob Borg
cae120fd4d
Bind to IPv6 multicast group instead of ::
...
This makes it possible to run multiple instances on the same box, all
receiving local discovery packets. Tested on Mac, Windows, supposed to
work on at least Linux too. For Windows, there may be issues with XP and
earlier, but meh...
2015-08-27 17:51:15 +02:00
Jakob Borg
be332a6223
Local discovery should use the same port on v4 as v6 ( fixes #2201 )
2015-08-27 16:04:21 +02:00
Jakob Borg
bda0bb6f13
Merge pull request #2197 from kozec/instance-id
...
Feature request: startTime in system/status
2015-08-27 08:23:01 +02:00
Jakob Borg
2bed62dd9e
Don't trust response header ( fixes #2186 )
...
Either Angular or the browser sometimes returns cached repsonse header,
causing a flap between requests that return the new version and requests
that return the old one. Here, instead, we trust the actual data
returned by the uncached /rest/system/version call.
2015-08-25 15:40:24 +02:00
Jakob Borg
a27bc4ebea
stsigtool should use the built in key by default
2015-08-24 16:24:00 +02:00
Jakob Borg
d6e34761dc
Fix events timeout errors
...
Resetting the timeout doesn't fully cut it, as it may timeout after we
got an event and be delivered later. This should fix it well enough for
the moment. https://github.com/golang/go/issues/11513
2015-08-24 09:38:39 +02:00
Jakob Borg
baa87bc823
Command line switch -paused
2015-08-23 22:03:58 +02:00
Jakob Borg
944d9c84a0
Pause and resume devices (ref #215 )
2015-08-23 22:00:21 +02:00
Jakob Borg
1e447741ee
Update dependencies
2015-08-23 15:57:26 +02:00
Jakob Borg
4405ac7386
Report reason for no IPv6 multicast with STTRACE=discover
2015-08-23 15:50:57 +02:00
Jakob Borg
a7f2416c0c
IPv6 multicast on Windows ( fixes #1817 )
2015-08-23 15:14:26 +02:00
Jakob Borg
40d0100132
Change default IPv6 multicast address ( fixes #2090 )
2015-08-23 14:59:38 +02:00
Jakob Borg
21adf752c8
Refactor: slightly simplify relay.Svc
2015-08-23 09:39:53 +02:00
Jakob Borg
aec143b882
Refactor: make IntermediateConnection more like Connection
2015-08-23 08:55:32 +02:00
Jakob Borg
f691040936
Refactor: s/Basic/Direct/ on connection type
2015-08-23 08:43:33 +02:00
Jakob Borg
ca4a3589e5
Increase event test timeout; the build server is slow, especially under -race
2015-08-21 13:26:16 +02:00
Jakob Borg
2eead17224
Actually map the key into Docker
2015-08-21 13:24:50 +02:00
Jakob Borg
626b26a227
Pass -sign parameter to build.go from Docker if key is present
2015-08-21 13:13:12 +02:00
Jakob Borg
cfed06697d
Only accept correctly signed upgrades
2015-08-21 10:36:28 +02:00
Jakob Borg
a0d9183b14
Sign binaries when given "-sign keyfile" option
2015-08-21 09:33:46 +02:00
Jakob Borg
d3eb674b30
Add a signature package and stsigtool CLI utility
2015-08-21 09:31:17 +02:00
Jakob Borg
7fe1fdd8c7
Improve status reporter
2015-08-20 14:29:57 +02:00
Jakob Borg
37cbe68204
Fix broken connection close
2015-08-20 13:58:07 +02:00
Jakob Borg
f76a66fc55
Very basic status service
2015-08-20 12:59:44 +02:00
Jakob Borg
d7949aa58e
I contribute stuff
2015-08-20 12:33:52 +02:00
Jakob Borg
f0c0c5483f
Cleaner build
2015-08-20 12:33:11 +02:00
Jakob Borg
7d444021bb
Update protocol dependency
2015-08-20 12:14:08 +02:00
Jakob Borg
a03dd1bd41
Update test configs to v12
2015-08-20 09:38:47 +02:00
Jakob Borg
4b366f2857
This is now the v0.12 branch
2015-08-20 09:19:55 +02:00
Jakob Borg
c87faace6b
Merge remote-tracking branch 'syncthing/pr/1995'
...
* syncthing/pr/1995:
Add switch to disable relays
Do not start relay service unless explicitly asked for, or global announcement server is running
Add dynamic relay lookup (DDoS relays.syncthing.net!)
Discovery clients now take an announcer, global discovery is delayed
Expose connection type and relay status in the UI
Add dependencies (fixes #1364 )
Check relays for available devices
Add incoming connection relay service
Add unsubscribe to config
Connections have types
Large refactoring/feature commit
2015-08-20 09:13:37 +02:00
Jakob Borg
59eeafbdfa
Merge pull request #2174 from alex2108/master
...
Fix time zone error in staggered versioning (fixes #2165 )
2015-08-19 20:25:24 +02:00
Jakob Borg
1487552b48
s/in/at/ ( fixes #2158 )
2015-08-19 10:42:48 +02:00
Jakob Borg
c7dbe18df6
Newest first should be different from oldest first ( fixes #2161 )
2015-08-19 09:42:52 +02:00
Jakob Borg
c2bc3358cc
Merge pull request #2168 from calmh/codename
...
Add release code name
2015-08-19 08:31:22 +02:00
Jakob Borg
dbb388719e
Retain standard streams over restart ( fixes #2155 )
2015-08-18 17:24:50 +02:00
Jakob Borg
283c91548a
Add release code name
...
I figured we're missing out on being cool and awesome by not having an
alphabetically based release code name like the big guys. This commit
fixes that. I've unilaterally decided on a theme of "$metal $bug"
because metals are kind of cool, and bugs, well, ...
2015-08-18 13:33:36 +02:00
Jakob Borg
0ee123375d
Merge remote-tracking branch 'syncthing/pr/2117'
...
* syncthing/pr/2117:
Disable testing upgrade endpoint because it fails when disconnected
2015-08-18 09:15:00 +02:00