diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-09-12 14:18:43 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-09-26 10:56:53 -0700 |
commit | afe0419db7adb643aff7c2f2c99f2e2302c6dc7d (patch) | |
tree | 13ebf7a0b58a43c9c9535192407f669058f6f876 /src/or/protover.h | |
parent | 3a3120819c8f600ef7d22ddf3f5476791c7e1d9b (diff) | |
download | tor-afe0419db7adb643aff7c2f2c99f2e2302c6dc7d.tar.gz tor-afe0419db7adb643aff7c2f2c99f2e2302c6dc7d.zip |
Rename get_supported_protocols to protover_get_supported_protocols
Diffstat (limited to 'src/or/protover.h')
-rw-r--r-- | src/or/protover.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/protover.h b/src/or/protover.h index 654127ee54..5f4789d71e 100644 --- a/src/or/protover.h +++ b/src/or/protover.h @@ -25,7 +25,7 @@ typedef enum protocol_type_t { int protover_all_supported(const char *s, char **missing); int protover_is_supported_here(protocol_type_t pr, uint32_t ver); -const char *get_supported_protocols(void); +const char *protover_get_supported_protocols(void); char *protover_compute_vote(const smartlist_t *list_of_proto_strings, int threshold); |