diff options
author | Joey Hess <joeyh@joeyh.name> | 2018-03-07 15:15:23 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2018-03-07 15:38:01 -0400 |
commit | 9f4771eb3c3f29ea38bbfc70eaf78198ca948840 (patch) | |
tree | 254a904d70a593da0c4bcfc4d948d4f9a07d19c2 /doc/design | |
parent | b7aa7445a5d97d6f43fbea26ae2ee1773744ebc9 (diff) |
implemented git-annex-shell p2pstdio
Not yet used by git-annex, but this will allow faster transfers etc than
using individual ssh connections and rsync.
Not called git-annex-shell p2p, because git-annex p2p does something
else and I don't want two subcommands with the same name between the two
for sanity reasons.
This commit was sponsored by Øyvind Andersen Holm.
Diffstat (limited to 'doc/design')
-rw-r--r-- | doc/design/p2p_protocol.mdwn | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/design/p2p_protocol.mdwn b/doc/design/p2p_protocol.mdwn index 23ac4052a..be3c5e6cb 100644 --- a/doc/design/p2p_protocol.mdwn +++ b/doc/design/p2p_protocol.mdwn @@ -3,7 +3,7 @@ communicate between peers. There's a common line-based serialization of the protocol, but other serializations are also possible. The line-based serialization is spoken -by [[git-annex-shell], and by [[git-annex-remotedaemon]] when serving tor. +by [[git-annex-shell], and by git-annex over tor. One peer is known as the client, and is the peer that initiates the connection. The other peer is known as the server, and is the peer that the @@ -29,6 +29,10 @@ connection. AUTH_SUCCESS UUID AUTH_FAILURE +Note that authentication does not guarantee that the client is talking to +who they expect to be talking to. This, and encryption of the connection, +are handled at a lower level. + ## Errors Either the client or the server may send an error message at any |