summaryrefslogtreecommitdiff
path: root/src/or
diff options
context:
space:
mode:
authorAndrea Shepard <andrea@torproject.org>2014-01-23 06:42:14 -0800
committerAndrea Shepard <andrea@torproject.org>2014-09-30 23:14:25 -0700
commita2de0a1034b3d4c1433c548526a1401e51540bc1 (patch)
treed1576248233bca9fd9a8c0eb8e87a98ca584f856 /src/or
parent8719f8ff09346f2aaa596ec77ff326923379ccde (diff)
downloadtor-a2de0a1034b3d4c1433c548526a1401e51540bc1.tar.gz
tor-a2de0a1034b3d4c1433c548526a1401e51540bc1.zip
Make buf_datalen() mockable
Diffstat (limited to 'src/or')
-rw-r--r--src/or/buffers.c4
-rw-r--r--src/or/buffers.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/or/buffers.c b/src/or/buffers.c
index 033f86288e..85eff36b4c 100644
--- a/src/or/buffers.c
+++ b/src/or/buffers.c
@@ -559,8 +559,8 @@ buf_clear(buf_t *buf)
}
/** Return the number of bytes stored in <b>buf</b> */
-size_t
-buf_datalen(const buf_t *buf)
+MOCK_IMPL(size_t,
+buf_datalen, (const buf_t *buf))
{
return buf->datalen;
}
diff --git a/src/or/buffers.h b/src/or/buffers.h
index c90e14750e..6b91a2d6c1 100644
--- a/src/or/buffers.h
+++ b/src/or/buffers.h
@@ -24,7 +24,7 @@ void buf_shrink(buf_t *buf);
size_t buf_shrink_freelists(int free_all);
void buf_dump_freelist_sizes(int severity);
-size_t buf_datalen(const buf_t *buf);
+MOCK_DECL(size_t, buf_datalen, (const buf_t *buf));
size_t buf_allocation(const buf_t *buf);
size_t buf_slack(const buf_t *buf);