aboutsummaryrefslogtreecommitdiff
path: root/src/test/test_extorport.c
diff options
context:
space:
mode:
authorGeorge Kadianakis <desnacked@riseup.net>2018-09-15 16:33:05 +0300
committerGeorge Kadianakis <desnacked@riseup.net>2018-09-15 16:52:32 +0300
commitb2092f1ced891737d83915f027b6776882d256b5 (patch)
tree99408c3e39062b725dbbf42430c4f39cf54f0d6b /src/test/test_extorport.c
parent6069185bcc61fe797582b9b9826a5d52e4aabb22 (diff)
downloadtor-b2092f1ced891737d83915f027b6776882d256b5.tar.gz
tor-b2092f1ced891737d83915f027b6776882d256b5.zip
Add unittest for HiddenServiceExportCircuitID.
Had to move a function to test helpers.
Diffstat (limited to 'src/test/test_extorport.c')
-rw-r--r--src/test/test_extorport.c17
1 files changed, 1 insertions, 16 deletions
diff --git a/src/test/test_extorport.c b/src/test/test_extorport.c
index ff987563c6..7babc81ee7 100644
--- a/src/test/test_extorport.c
+++ b/src/test/test_extorport.c
@@ -17,6 +17,7 @@
#include "core/or/or_connection_st.h"
#include "test/test.h"
+#include "test/test_helpers.h"
#ifdef HAVE_SYS_STAT_H
#include <sys/stat.h>
@@ -89,22 +90,6 @@ connection_write_to_buf_impl_replacement(const char *string, size_t len,
buf_add(conn->outbuf, string, len);
}
-static char *
-buf_get_contents(buf_t *buf, size_t *sz_out)
-{
- char *out;
- *sz_out = buf_datalen(buf);
- if (*sz_out >= ULONG_MAX)
- return NULL; /* C'mon, really? */
- out = tor_malloc(*sz_out + 1);
- if (buf_get_bytes(buf, out, (unsigned long)*sz_out) != 0) {
- tor_free(out);
- return NULL;
- }
- out[*sz_out] = '\0'; /* Hopefully gratuitous. */
- return out;
-}
-
static void
test_ext_or_write_command(void *arg)
{