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-2021, The Tor Project, Inc. */
5 /* See LICENSE for licensing information */
9 * \brief Header file for control_fmt.c.
12 #ifndef TOR_CONTROL_FMT_H
13 #define TOR_CONTROL_FMT_H
15 int write_stream_target_to_buf(entry_connection_t
*conn
, char *buf
,
17 void orconn_target_get_name(char *buf
, size_t len
,
18 or_connection_t
*conn
);
19 char *circuit_describe_status_for_controller(origin_circuit_t
*circ
);
20 char *entry_connection_describe_status_for_controller(const
21 entry_connection_t
*conn
);
23 MOCK_DECL(const char *, node_describe_longname_by_id
,(const char *id_digest
));
25 #endif /* !defined(TOR_CONTROL_FMT_H) */