summaryrefslogtreecommitdiff
path: root/src/or
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2018-05-22 13:35:20 -0400
committerNick Mathewson <nickm@torproject.org>2018-05-22 13:35:20 -0400
commita5d4ce2b393955f60962d3db8744a846506c3e7b (patch)
treefa1b4af7d4be4a160c63337fdc41ee3b23c59f6e /src/or
parent6e8e005b531c9061866bb4f601e4b97814834687 (diff)
downloadtor-a5d4ce2b393955f60962d3db8744a846506c3e7b.tar.gz
tor-a5d4ce2b393955f60962d3db8744a846506c3e7b.zip
Make the TROVE-2018-005 fix work with rust.
Diffstat (limited to 'src/or')
-rw-r--r--src/or/protover_rust.c17
1 files changed, 16 insertions, 1 deletions
diff --git a/src/or/protover_rust.c b/src/or/protover_rust.c
index 26e21cc1c5..99304f8b51 100644
--- a/src/or/protover_rust.c
+++ b/src/or/protover_rust.c
@@ -13,7 +13,22 @@
#ifdef HAVE_RUST
/* Define for compatibility, used in main.c */
-void protover_free_all(void) {}
+void
+protover_free_all(void)
+{
+}
+
+int protover_contains_long_protocol_names_(const char *s);
+
+/**
+ * Return true if the unparsed protover in <b>s</b> would contain a protocol
+ * name longer than MAX_PROTOCOL_NAME_LENGTH, and false otherwise.
+ */
+bool
+protover_contains_long_protocol_names(const char *s)
+{
+ return protover_contains_long_protocol_names_(s) != 0;
+}
#endif /* defined(HAVE_RUST) */