diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-01-15 09:01:20 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-03-25 16:35:33 -0400 |
commit | 9e60482b8073f2d43187c36c9159fd4367d7140a (patch) | |
tree | e73931e80e7f67442f2f865b630d98a338b1b3cb /src/test/test.h | |
parent | 24b945f713a713bba0ec4f0d8297b49cbc45c5a1 (diff) | |
download | tor-9e60482b8073f2d43187c36c9159fd4367d7140a.tar.gz tor-9e60482b8073f2d43187c36c9159fd4367d7140a.zip |
Pubsub: an OO layer on top of lib/dispatch
This "publish/subscribe" layer sits on top of lib/dispatch, and
tries to provide more type-safety and cross-checking for the
lower-level layer.
Even with this commit, we're still not done: more checking will come
in the next commit, and a set of usability/typesafety macros will
come after.
Diffstat (limited to 'src/test/test.h')
-rw-r--r-- | src/test/test.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/test.h b/src/test/test.h index cd0ce4f6df..fb417124ce 100644 --- a/src/test/test.h +++ b/src/test/test.h @@ -253,6 +253,7 @@ extern struct testcase_t proto_http_tests[]; extern struct testcase_t proto_misc_tests[]; extern struct testcase_t protover_tests[]; extern struct testcase_t pt_tests[]; +extern struct testcase_t pubsub_msg_tests[]; extern struct testcase_t relay_tests[]; extern struct testcase_t relaycell_tests[]; extern struct testcase_t relaycrypt_tests[]; |