aboutsummaryrefslogtreecommitdiff
path: root/src/core/or/circuit_st.h
diff options
context:
space:
mode:
authorGeorge Kadianakis <desnacked@riseup.net>2019-01-10 12:38:00 +0200
committerGeorge Kadianakis <desnacked@riseup.net>2019-01-10 13:06:08 +0200
commitf4938179c50cc385b7599e5a03388792e46cde83 (patch)
tree288c30339c5d7c3280d12b09aa6789fa65696604 /src/core/or/circuit_st.h
parent5738a0ab6c7904ed9dd53ce5d045b2dedf69b4f6 (diff)
downloadtor-f4938179c50cc385b7599e5a03388792e46cde83.tar.gz
tor-f4938179c50cc385b7599e5a03388792e46cde83.zip
Rename circpad_machineinfo_t -> circpad_machine_state_t
Diffstat (limited to 'src/core/or/circuit_st.h')
-rw-r--r--src/core/or/circuit_st.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/or/circuit_st.h b/src/core/or/circuit_st.h
index 74f045d723..bfbd336c3a 100644
--- a/src/core/or/circuit_st.h
+++ b/src/core/or/circuit_st.h
@@ -13,7 +13,7 @@
struct hs_token_t;
typedef struct circpad_machine_spec_t circpad_machine_spec_t;
-typedef struct circpad_machineinfo_t circpad_machineinfo_t;
+typedef struct circpad_machine_state_t circpad_machine_state_t;
/** Number of padding state machines on a circuit. */
#define CIRCPAD_MAX_MACHINES (2)
@@ -200,7 +200,7 @@ struct circuit_t {
*
* Each element of this array corresponds to a different padding machine,
* and we can have up to CIRCPAD_MAX_MACHINES such machines. */
- circpad_machineinfo_t *padding_info[CIRCPAD_MAX_MACHINES];
+ circpad_machine_state_t *padding_info[CIRCPAD_MAX_MACHINES];
};
#endif