]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
prop224: Rename hs_desc_encode_lspec()
authorDavid Goulet <dgoulet@torproject.org>
Tue, 22 Aug 2017 18:12:49 +0000 (14:12 -0400)
committerDavid Goulet <dgoulet@torproject.org>
Thu, 24 Aug 2017 17:03:28 +0000 (13:03 -0400)
Give it a name that shows the transition from a descriptor link spec to a
trunnel link spec.

Signed-off-by: David Goulet <dgoulet@torproject.org>
src/or/hs_client.c
src/or/hs_descriptor.c
src/or/hs_descriptor.h

index 71186b261922746852101dab96b88d0527b111cd..90124fb8e605c525476b85910c015592bc62b0aa 100644 (file)
@@ -407,7 +407,7 @@ desc_intro_point_to_extend_info(const hs_desc_intro_point_t *ip)
    * representation which is a trunnel object. */
   SMARTLIST_FOREACH_BEGIN(ip->link_specifiers,
                           const hs_desc_link_specifier_t *, desc_lspec) {
-    link_specifier_t *lspec = hs_desc_encode_lspec(desc_lspec);
+    link_specifier_t *lspec = hs_desc_lspec_to_trunnel(desc_lspec);
     smartlist_add(lspecs, lspec);
   } SMARTLIST_FOREACH_END(desc_lspec);
 
index b9233c6d7c0c0848ae65675b1f7bd7b7731f39d8..af443b99559060f32f020066b9ca03219ef7359c 100644 (file)
@@ -331,7 +331,7 @@ encode_link_specifiers(const smartlist_t *specs)
 
   SMARTLIST_FOREACH_BEGIN(specs, const hs_desc_link_specifier_t *,
                           spec) {
-    link_specifier_t *ls = hs_desc_encode_lspec(spec);
+    link_specifier_t *ls = hs_desc_lspec_to_trunnel(spec);
     if (ls) {
       link_specifier_list_add_spec(lslist, ls);
     }
@@ -2538,7 +2538,7 @@ hs_descriptor_clear_intro_points(hs_descriptor_t *desc)
  * link specifier object that is the encoded representation of spec. Return
  * NULL on error. */
 link_specifier_t *
-hs_desc_encode_lspec(const hs_desc_link_specifier_t *spec)
+hs_desc_lspec_to_trunnel(const hs_desc_link_specifier_t *spec)
 {
   tor_assert(spec);
 
index eeeb3e38a40baf41a9837aeaf7c8fe7d0b2f936a..ce225d5217cf2aab3a82a8d24ca77367bc51e1eb 100644 (file)
@@ -233,7 +233,8 @@ size_t hs_desc_plaintext_obj_size(const hs_desc_plaintext_data_t *data);
 hs_desc_intro_point_t *hs_desc_intro_point_new(void);
 void hs_desc_intro_point_free(hs_desc_intro_point_t *ip);
 
-link_specifier_t *hs_desc_encode_lspec(const hs_desc_link_specifier_t *spec);
+link_specifier_t *hs_desc_lspec_to_trunnel(
+                                   const hs_desc_link_specifier_t *spec);
 
 #ifdef HS_DESCRIPTOR_PRIVATE