diff options
author | Mike Perry <mikeperry-git@torproject.org> | 2018-10-23 20:55:10 +0000 |
---|---|---|
committer | George Kadianakis <desnacked@riseup.net> | 2019-01-02 15:12:16 +0200 |
commit | 659a4f06d46a0e8e4f391eda3b6d86f2ab6e4db9 (patch) | |
tree | f33207b1bf0355076b244b161b2bb093c8840c34 /src/feature | |
parent | 70e9245f6feecceee96f0ea8d426e1a5a6fc9b8d (diff) | |
download | tor-659a4f06d46a0e8e4f391eda3b6d86f2ab6e4db9.tar.gz tor-659a4f06d46a0e8e4f391eda3b6d86f2ab6e4db9.zip |
Circuit padding ProtoVer plumbing.
This helps us to determine if a middle node can pad to us or not.
Co-authored-by: George Kadianakis <desnacked@riseup.net>
Diffstat (limited to 'src/feature')
-rw-r--r-- | src/feature/nodelist/nodelist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/feature/nodelist/nodelist.c b/src/feature/nodelist/nodelist.c index d94e73f48f..15b3f7b600 100644 --- a/src/feature/nodelist/nodelist.c +++ b/src/feature/nodelist/nodelist.c @@ -1106,7 +1106,7 @@ node_ed25519_id_matches(const node_t *node, const ed25519_public_key_t *id) /** Dummy object that should be unreturnable. Used to ensure that * node_get_protover_summary_flags() always returns non-NULL. */ static const protover_summary_flags_t zero_protover_flags = { - 0,0,0,0,0,0,0 + 0,0,0,0,0,0,0,0 }; /** Return the protover_summary_flags for a given node. */ |