diff options
author | John Brooks <john.brooks@dereferenced.net> | 2015-07-14 02:22:23 -0400 |
---|---|---|
committer | John Brooks <john.brooks@dereferenced.net> | 2015-07-14 02:29:17 -0400 |
commit | cdc5debfde33d196be84863818d7dbaceab2a829 (patch) | |
tree | 6286f26c4f6878b160cd6fcec85ec71b1c9a352f /src/or/rendservice.c | |
parent | b06759edfda17205b8a027b2a369abefcaaba4fc (diff) | |
download | tor-cdc5debfde33d196be84863818d7dbaceab2a829.tar.gz tor-cdc5debfde33d196be84863818d7dbaceab2a829.zip |
Rename ambiguous introduction point functions
Task #15824
Diffstat (limited to 'src/or/rendservice.c')
-rw-r--r-- | src/or/rendservice.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/or/rendservice.c b/src/or/rendservice.c index f4fb860078..6c5ca49528 100644 --- a/src/or/rendservice.c +++ b/src/or/rendservice.c @@ -1437,8 +1437,9 @@ rend_check_authorization(rend_service_t *service, * rendezvous point. */ int -rend_service_introduce(origin_circuit_t *circuit, const uint8_t *request, - size_t request_len) +rend_service_receive_introduction(origin_circuit_t *circuit, + const uint8_t *request, + size_t request_len) { /* Global status stuff */ int status = 0, result; @@ -3523,7 +3524,7 @@ rend_service_desc_has_uploaded(const rend_data_t *rend_data) * This is called once a second by the main loop. */ void -rend_services_introduce(void) +rend_consider_services_intro_points(void) { int i; time_t now; |