Skip to content
Snippets Groups Projects
  1. Mar 25, 2019
    • Nick Mathewson's avatar
      pubsub: relationship checking functionality · 271a6718
      Nick Mathewson authored
      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.
      271a6718
    • Nick Mathewson's avatar
      Low-level dispatch module for publish-subscribe mechanism · e4d3098d
      Nick Mathewson authored
      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.
      e4d3098d
  2. Dec 21, 2018
    • Nick Mathewson's avatar
      Try @warning_flags to avoid bloating verbose make logs · 97c9ced7
      Nick Mathewson authored
      We now accumulate warning flags in a separate variable,
      "TOR_WARNING_FLAGS", and write it to a "warning_flags" file.  Then
      we test whether the compiler will accept "@warning_flags": if so, we
      put "@warning_flags" in the CFLAGS; if not, we copy the contents of
      "$TOR_WARNING_FLAGS" into the CFLAGS.
      
      Closes ticket 28924.
      97c9ced7
  3. Dec 17, 2018
  4. Nov 14, 2018
  5. Nov 05, 2018
  6. Sep 27, 2018
  7. Jul 08, 2018
  8. Jul 05, 2018
  9. Jun 29, 2018
  10. Jun 28, 2018
  11. Jun 27, 2018
  12. Jun 26, 2018
    • Nick Mathewson's avatar
      Extract core part of smartlist code into its own library. · b1de1e7a
      Nick Mathewson authored
      The smartlist_core library now contains only the parts of smartlists
      that are needed for the logging library.  This resolves the
      circularity between "container" and "log".
      
      The "containers" library still uses the logging code, and has the
      higher-level smartlist functions.
      b1de1e7a
  13. Jun 22, 2018
  14. Jun 21, 2018
  15. Jun 19, 2018
    • Nick Mathewson's avatar
      Use a rust build script to set linker options correctly for tests. · bd9ebb37
      Nick Mathewson authored
      We need this trick because some of our Rust tests depend on our C
      code, which in turn depend on other native libraries, which thereby
      pulls a whole mess of our build system into "cargo test".
      
      To solve this, we add a build script (build.rs) to set most of the
      options that we want based on the contents of config.rust.  Some
      options can't be set, and need to go to the linker directly: we use
      a linker replacement (link_rust.sh) for these.  Both config.rust and
      link_rust.sh are generated by autoconf for us.
      
      This patch on its own should enough to make the crypto test build,
      but not necessarily enough to make it pass.
      bd9ebb37
  16. Dec 13, 2017
Loading