aboutsummaryrefslogtreecommitdiff
path: root/src/core/or/sendme.h
diff options
context:
space:
mode:
authorDavid Goulet <dgoulet@torproject.org>2019-04-29 11:38:11 -0400
committerDavid Goulet <dgoulet@torproject.org>2019-04-29 12:17:57 -0400
commit0d8b9b56c5332b8f0205f460d0b23bb7f5620eff (patch)
tree31beacd28649e85f5e6bfaebc53b688376ee6783 /src/core/or/sendme.h
parent67c22541830cf1dfc1c02843a1d4dd81c2df16ff (diff)
downloadtor-0d8b9b56c5332b8f0205f460d0b23bb7f5620eff.tar.gz
tor-0d8b9b56c5332b8f0205f460d0b23bb7f5620eff.zip
sendme: Better function names
From nickm's review, improve the names of some functions. Part of #26288 Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/core/or/sendme.h')
-rw-r--r--src/core/or/sendme.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/or/sendme.h b/src/core/or/sendme.h
index 5889b41e9c..78273eb9a8 100644
--- a/src/core/or/sendme.h
+++ b/src/core/or/sendme.h
@@ -35,12 +35,12 @@ int sendme_note_circuit_data_packaged(circuit_t *circ,
int sendme_note_stream_data_packaged(edge_connection_t *conn);
/* Track cell digest. */
-void sendme_note_cell_digest(circuit_t *circ);
-void sendme_circuit_note_inbound_cell(crypt_path_t *cpath);
-void sendme_circuit_note_outbound_cell(or_circuit_t *or_circ);
+void sendme_record_cell_digest(circuit_t *circ);
+void sendme_circuit_record_inbound_cell(crypt_path_t *cpath);
+void sendme_circuit_record_outbound_cell(or_circuit_t *or_circ);
/* Circuit level information. */
-bool sendme_circuit_is_next_cell(int window);
+bool sendme_circuit_cell_is_next(int window);
/* Private section starts. */
#ifdef SENDME_PRIVATE