diff options
Diffstat (limited to 'src/or/channeltls.h')
-rw-r--r-- | src/or/channeltls.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/channeltls.h b/src/or/channeltls.h index 8eb2a63760..b7e0475de6 100644 --- a/src/or/channeltls.h +++ b/src/or/channeltls.h @@ -17,16 +17,16 @@ #define TLS_CHAN_MAGIC 0x8a192427U -#ifdef _TOR_CHANNEL_INTERNAL +#ifdef TOR_CHANNEL_INTERNAL_ struct channel_tls_s { /* Base channel_t struct */ - channel_t _base; + channel_t base_; /* or_connection_t pointer */ or_connection_t *conn; }; -#endif /* _TOR_CHANNEL_INTERNAL */ +#endif /* TOR_CHANNEL_INTERNAL_ */ channel_t * channel_tls_connect(const tor_addr_t *addr, uint16_t port, const char *id_digest); |