pubsub_publish.h 480 B

123456789101112131415
  1. /* Copyright (c) 2001, Matej Pfajfar.
  2. * Copyright (c) 2001-2004, Roger Dingledine.
  3. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  4. * Copyright (c) 2007-2018, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. #ifndef TOR_PUBSUB_PUBLISH_H
  7. #define TOR_PUBSUB_PUBLISH_H
  8. #include "lib/dispatch/msgtypes.h"
  9. struct pub_binding_t;
  10. int pubsub_pub_(const struct pub_binding_t *pub, msg_aux_data_t auxdata);
  11. #endif /* !defined(TOR_PUBSUB_PUBLISH_H) */