Qrexec3Implementation changed

This commit is contained in:
Rafał Wojdyła 2014-10-06 19:51:44 +00:00
parent 19bd0f99d8
commit a6932cd1ce

View File

@ -73,7 +73,7 @@ struct msg_header {
};
```
When two peers **in different domains** establish connection, the server sends `MSG_HELLO` followed by `peer_info` struct:
When two peers establish connection, the server sends `MSG_HELLO` followed by `peer_info` struct:
``` {.wiki}
struct peer_info {
@ -81,7 +81,7 @@ struct peer_info {
};
```
The client then should reply with its own `MSG_HELLO` and `peer_info`. If protocol versions don't match, the connection is closed. TODO: fallback for backwards compatibility.
The client then should reply with its own `MSG_HELLO` and `peer_info`. If protocol versions don't match, the connection is closed. TODO: fallback for backwards compatibility, don't do handshake in the same domain?.
Details of all possible use cases and the messages involved are described below.