[tor-commits] [tor/master] Rename get_rend_cpath() to create_rend_cpath().

nickm at torproject.org nickm at torproject.org
Fri Jul 7 15:19:28 UTC 2017


commit 2432499705b0df5427604b5bf501bb22ccd73131
Author: George Kadianakis <desnacked at riseup.net>
Date:   Thu Jul 6 13:53:08 2017 +0300

    Rename get_rend_cpath() to create_rend_cpath().
    
    based on Nick's review.
---
 src/or/hs_circuit.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/or/hs_circuit.c b/src/or/hs_circuit.c
index 213f5cb..1729080 100644
--- a/src/or/hs_circuit.c
+++ b/src/or/hs_circuit.c
@@ -48,7 +48,7 @@ circuit_purpose_is_correct_for_rend(unsigned int circ_purpose, int is_service_si
  * If <b>is_service_side</b> is set, we are the hidden service and the final
  * hop of the rendezvous circuit is the client on the other side. */
 static crypt_path_t *
-get_rend_cpath(const uint8_t *ntor_key_seed, int is_service_side)
+create_rend_cpath(const uint8_t *ntor_key_seed, int is_service_side)
 {
   uint8_t keys[HS_NTOR_KEY_EXPANSION_KDF_OUT_LEN];
   crypt_path_t *cpath = NULL;
@@ -77,7 +77,7 @@ get_rend_cpath(const uint8_t *ntor_key_seed, int is_service_side)
  * <b>rend_cell_body</b> (which must be at least DH_KEY_LEN+DIGEST_LEN bytes).
  */
 static crypt_path_t *
-get_rend_cpath_legacy(origin_circuit_t *circ, const uint8_t *rend_cell_body)
+create_rend_cpath_legacy(origin_circuit_t *circ, const uint8_t *rend_cell_body)
 {
   crypt_path_t *hop = NULL;
   char keys[DIGEST_LEN+CPATH_KEY_MATERIAL_LEN];
@@ -177,7 +177,7 @@ hs_circuit_setup_e2e_rend_circ(origin_circuit_t *circ,
     return -1;
   }
 
-  crypt_path_t *hop = get_rend_cpath(ntor_key_seed, is_service_side);
+  crypt_path_t *hop = create_rend_cpath(ntor_key_seed, is_service_side);
   if (!hop) {
     log_warn(LD_REND, "Couldn't get v3 %s cpath!",
              is_service_side ? "service-side" : "client-side");
@@ -203,7 +203,7 @@ hs_circuit_setup_e2e_rend_circ_legacy_client(origin_circuit_t *circ,
     return -1;
   }
 
-  crypt_path_t *hop = get_rend_cpath_legacy(circ, rend_cell_body);
+  crypt_path_t *hop = create_rend_cpath_legacy(circ, rend_cell_body);
   if (!hop) {
     log_warn(LD_GENERAL, "Couldn't get v2 cpath.");
     return -1;





More information about the tor-commits mailing list