diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-01-11 20:17:04 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-03-25 16:35:33 -0400 |
commit | e4d3098d4d23686320013b80b6305fbd52863f76 (patch) | |
tree | 96c23b73d84025ec42e676b4087c6b7aaa5dd63e /src/test/test.h | |
parent | a62ac1719887f0756ceb516ce3b12cd2aee18191 (diff) | |
download | tor-e4d3098d4d23686320013b80b6305fbd52863f76.tar.gz tor-e4d3098d4d23686320013b80b6305fbd52863f76.zip |
Low-level dispatch module for publish-subscribe mechanism
This module implements a way to send messages from one module to
another, with associated data types. It does not yet do anything to
ensure that messages are correct, that types match, or that other
forms of consistency are preserved.
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 7a3a4d8fdc..cd0ce4f6df 100644 --- a/src/test/test.h +++ b/src/test/test.h @@ -209,6 +209,7 @@ extern struct testcase_t crypto_openssl_tests[]; extern struct testcase_t crypto_tests[]; extern struct testcase_t dir_handle_get_tests[]; extern struct testcase_t dir_tests[]; +extern struct testcase_t dispatch_tests[]; extern struct testcase_t dns_tests[]; extern struct testcase_t dos_tests[]; extern struct testcase_t entryconn_tests[]; |