mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-14 07:03:44 +01:00
16 lines
443 B
C
16 lines
443 B
C
|
/* Copyright (c) 2001, Matej Pfajfar.
|
||
|
* Copyright (c) 2001-2004, Roger Dingledine.
|
||
|
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
|
||
|
* Copyright (c) 2007-2018, The Tor Project, Inc. */
|
||
|
/* See LICENSE for licensing information */
|
||
|
|
||
|
#ifndef TOR_PUBSUB_PUBLISH_H
|
||
|
#define TOR_PUBSUB_PUBLISH_H
|
||
|
|
||
|
#include "lib/dispatch/msgtypes.h"
|
||
|
struct pub_binding_t;
|
||
|
|
||
|
int pubsub_pub_(const struct pub_binding_t *pub, msg_aux_data_t auxdata);
|
||
|
|
||
|
#endif
|