diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-12-17 16:41:01 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-12-17 16:41:01 -0500 |
commit | e969d9c6b4b82178fbc840e3d53e12cbb64fee5c (patch) | |
tree | 5be34da1967f5358ed84c816c86a4bce7d656a0e /src/feature/control/control.h | |
parent | 5a22b42c3a01ad8d99e977cfd9efa760438129e9 (diff) | |
parent | c8b8b15f0eb2651dea694a057e70e6b8c34dbe05 (diff) | |
download | tor-e969d9c6b4b82178fbc840e3d53e12cbb64fee5c.tar.gz tor-e969d9c6b4b82178fbc840e3d53e12cbb64fee5c.zip |
Merge branch 'ticket28179_squashed' into ticket28179_squashed_merged
Diffstat (limited to 'src/feature/control/control.h')
-rw-r--r-- | src/feature/control/control.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/feature/control/control.h b/src/feature/control/control.h index 4ad245e8e5..a1609b0f06 100644 --- a/src/feature/control/control.h +++ b/src/feature/control/control.h @@ -207,6 +207,7 @@ void control_event_clients_seen(const char *controller_str); void control_event_transport_launched(const char *mode, const char *transport_name, tor_addr_t *addr, uint16_t port); +void control_event_pt_log(const char *pt_name, const char *message); const char *rend_auth_type_to_string(rend_auth_type_t auth_type); MOCK_DECL(const char *, node_describe_longname_by_id,(const char *id_digest)); void control_event_hs_descriptor_requested(const char *onion_address, @@ -295,7 +296,8 @@ void control_free_all(void); #define EVENT_HS_DESC 0x0021 #define EVENT_HS_DESC_CONTENT 0x0022 #define EVENT_NETWORK_LIVENESS 0x0023 -#define EVENT_MAX_ 0x0023 +#define EVENT_PT_LOG 0x0024 +#define EVENT_MAX_ 0x0024 /* sizeof(control_connection_t.event_mask) in bits, currently a uint64_t */ #define EVENT_CAPACITY_ 0x0040 |