Rename TorClient::set_stream_prefs

In line with the rest of the renaming.

As per
  https://gitlab.torproject.org/tpo/core/arti/-/merge_requests/256#note_2771617
This commit is contained in:
Ian Jackson 2022-01-21 17:09:27 +00:00
parent dcf26466f3
commit a79a2e87be
1 changed files with 2 additions and 2 deletions

View File

@ -507,7 +507,7 @@ impl<R: Runtime> TorClient<R> {
//
// This function is private just because we're not sure we want to provide this API.
// https://gitlab.torproject.org/tpo/core/arti/-/merge_requests/250#note_2771238
fn set_connect_prefs(&mut self, connect_prefs: StreamPrefs) {
fn set_stream_prefs(&mut self, connect_prefs: StreamPrefs) {
self.connect_prefs = connect_prefs;
}
@ -518,7 +518,7 @@ impl<R: Runtime> TorClient<R> {
#[must_use]
pub fn clone_with_prefs(&self, connect_prefs: StreamPrefs) -> Self {
let mut result = self.clone();
result.set_connect_prefs(connect_prefs);
result.set_stream_prefs(connect_prefs);
result
}