tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

trunnel-local.h (519B)


      1 #ifndef TRUNNEL_LOCAL_H_INCLUDED
      2 #define TRUNNEL_LOCAL_H_INCLUDED
      3 
      4 #include "lib/crypt_ops/crypto_util.h"
      5 #include "lib/malloc/malloc.h"
      6 #include "lib/log/util_bug.h"
      7 
      8 #define trunnel_malloc tor_malloc
      9 #define trunnel_calloc tor_calloc
     10 #define trunnel_strdup tor_strdup
     11 #define trunnel_free_ tor_free_
     12 #define trunnel_realloc tor_realloc
     13 #define trunnel_reallocarray tor_reallocarray
     14 #define trunnel_assert tor_assert
     15 #define trunnel_memwipe(mem, len) memwipe((mem), 0, (len))
     16 #define trunnel_abort tor_abort_
     17 
     18 #endif