diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-03-24 11:15:19 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-05-11 13:25:11 -0400 |
commit | 80a6c8caa3910b18ce50ef870ef0af546c64faa2 (patch) | |
tree | 2f48426164336a059e8f3ff02ae631463017d78c /src/test/include.am | |
parent | 4e76b206b5fac18805a5cb2c3440dd367bd3b92d (diff) | |
download | tor-80a6c8caa3910b18ce50ef870ef0af546c64faa2.tar.gz tor-80a6c8caa3910b18ce50ef870ef0af546c64faa2.zip |
Basic work on a publish/subscribe abstraction
The goal here is to provide a way to decouple pieces of the code
that want to learn "when something happens" from those that realize
that it has happened.
The implementation here consists of a generic backend, plus a set of
macros to define and implement a set of type-safe frontends.
Diffstat (limited to 'src/test/include.am')
-rw-r--r-- | src/test/include.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/include.am b/src/test/include.am index 7d80fdf152..f1f9047e84 100644 --- a/src/test/include.am +++ b/src/test/include.am @@ -97,6 +97,7 @@ src_test_test_SOURCES = \ src/test/test_policy.c \ src/test/test_procmon.c \ src/test/test_pt.c \ + src/test/test_pubsub.c \ src/test/test_relay.c \ src/test/test_relaycell.c \ src/test/test_rendcache.c \ |