diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-11-09 09:17:53 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-11-09 09:17:53 -0500 |
commit | 06260315645945ca9e08b5a19b67c8adad65a698 (patch) | |
tree | 52d4a7cd26645cceb9f4204eb72bca29eea27766 /src/or/or.h | |
parent | 59c1016aba63c62e658065475add3cf77f665afa (diff) | |
parent | 3124c921e7af15548b8b16d5f239bfdcd178b2ca (diff) | |
download | tor-06260315645945ca9e08b5a19b67c8adad65a698.tar.gz tor-06260315645945ca9e08b5a19b67c8adad65a698.zip |
Merge branch 'ticket20895'
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/or/or.h b/src/or/or.h index a68f1c3c47..fa5268ac59 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -2316,8 +2316,12 @@ typedef struct routerstatus_t { unsigned int supports_extend2_cells:1; /** True iff this router has a protocol list that allows it to negotiate - * ed25519 identity keys on a link handshake. */ - unsigned int supports_ed25519_link_handshake:1; + * ed25519 identity keys on a link handshake with us. */ + unsigned int supports_ed25519_link_handshake_compat:1; + + /** True iff this router has a protocol list that allows it to negotiate + * ed25519 identity keys on a link handshake, at all. */ + unsigned int supports_ed25519_link_handshake_any:1; /** True iff this router has a protocol list that allows it to be an * introduction point supporting ed25519 authentication key which is part of |