diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-01-15 09:01:41 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-03-25 16:35:33 -0400 |
commit | 271a67182211a954dba1082739f8fe7daf421f6c (patch) | |
tree | f985f475b3ce6e0bd4a8b69535a00b6e43c663fb /src/lib/pubsub/include.am | |
parent | 9e60482b8073f2d43187c36c9159fd4367d7140a (diff) | |
download | tor-271a67182211a954dba1082739f8fe7daf421f6c.tar.gz tor-271a67182211a954dba1082739f8fe7daf421f6c.zip |
pubsub: relationship checking functionality
This code tries to prevent a large number of possible errors by
enforcing different restrictions on the messages that different
modules publish and subscribe to.
Some of these rules are probably too strict, and some too lax: we
should feel free to change them as needed as we move forward and
learn more.
Diffstat (limited to 'src/lib/pubsub/include.am')
-rw-r--r-- | src/lib/pubsub/include.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/pubsub/include.am b/src/lib/pubsub/include.am index 9856c94a5d..0ab2fd7b33 100644 --- a/src/lib/pubsub/include.am +++ b/src/lib/pubsub/include.am @@ -7,6 +7,7 @@ endif src_lib_libtor_pubsub_a_SOURCES = \ src/lib/pubsub/pubsub_build.c \ + src/lib/pubsub/pubsub_check.c \ src/lib/pubsub/pubsub_publish.c src_lib_libtor_pubsub_testing_a_SOURCES = \ |