listener: update comments

This commit is contained in:
Hylke Bons 2012-02-06 12:54:04 +01:00
parent 873f2deee8
commit aa82b3441f
2 changed files with 8 additions and 4 deletions

View file

@ -49,9 +49,13 @@ namespace SparkleLib {
if (uri == null) {
// This is SparkleShare's centralized notification service.
// Don't worry, we only use this server as a backup if you
// don't have your own. All data needed to connect is hashed and
// we don't store any personal information ever.
// It communicates "It's time to sync!" signals between clients.
//
// Here's how it works: the client listens to a channel (the
// folder identifier, a SHA-1 hash) for when it's time to sync.
// Clients also send the current revision hash to the channel
// for other clients to pick up when you've synced up any
// changes. This way
//
// Please see the SparkleShare wiki if you wish to run
// your own service instead

View file

@ -16,9 +16,9 @@
using System;
using System.Net.Sockets;
using System.Text;
using System.Threading;
using System.Net.Sockets;
namespace SparkleLib {