aboutsummaryrefslogtreecommitdiff
path: root/src/core/proto
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/proto
parentb7bd162af70ced68d3ea9d738c8cacb5bea75a1c (diff)
downloadtor-5c0dd1aa908f891c8ad453bdcd70a4f6c51ae4b3.tar.gz
tor-5c0dd1aa908f891c8ad453bdcd70a4f6c51ae4b3.zip
move protover_rust.c to core/or/
Missed in 667a6e8fe9b8169e86f3ab889c4ea8af845d6939.
Diffstat (limited to 'src/core/proto')
-rw-r--r--src/core/proto/protover_rust.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/core/proto/protover_rust.c b/src/core/proto/protover_rust.c
deleted file mode 100644
index dbdd5c8237..0000000000
--- a/src/core/proto/protover_rust.c
+++ /dev/null
@@ -1,34 +0,0 @@
-/* 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) */
-