aboutsummaryrefslogtreecommitdiff
path: root/src/core/or/protover_rust.c
diff options
context:
space:
mode:
authorcypherpunks <cypherpunks@torproject.org>2018-09-21 20:14:53 +0000
committercypherpunks <cypherpunks@torproject.org>2018-09-21 20:14:53 +0000
commit5c0dd1aa908f891c8ad453bdcd70a4f6c51ae4b3 (patch)
tree58963b96f08d8c8c8bf7b68e49b52b84295b515f /src/core/or/protover_rust.c
parentb7bd162af70ced68d3ea9d738c8cacb5bea75a1c (diff)
downloadtor-5c0dd1aa908f891c8ad453bdcd70a4f6c51ae4b3.tar.gz
tor-5c0dd1aa908f891c8ad453bdcd70a4f6c51ae4b3.zip
move protover_rust.c to core/or/
Missed in 667a6e8fe9b8169e86f3ab889c4ea8af845d6939.
Diffstat (limited to 'src/core/or/protover_rust.c')
-rw-r--r--src/core/or/protover_rust.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/core/or/protover_rust.c b/src/core/or/protover_rust.c
new file mode 100644
index 0000000000..dbdd5c8237
--- /dev/null
+++ b/src/core/or/protover_rust.c
@@ -0,0 +1,34 @@
+/* Copyright (c) 2016-2018, The Tor Project, Inc. */
+/* See LICENSE for licensing information */
+
+/*
+ * \file protover_rust.c
+ * \brief Provide a C wrapper for functions exposed in /src/rust/protover,
+ * and safe translation/handling between the Rust/C boundary.
+ */
+
+#include "core/or/or.h"
+#include "core/or/protover.h"
+
+#ifdef HAVE_RUST
+
+/* Define for compatibility, used in main.c */
+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) */
+