Merge branch 'ssrlive' into dns-robustness

This commit is contained in:
B. Blechschmidt 2023-03-23 13:21:08 +01:00
commit 3de8b992d4
4 changed files with 62 additions and 69 deletions

View file

@ -86,5 +86,7 @@ pub fn main_entry(tun: &str, proxy: Proxy, options: Options) {
ttp.add_connection_manager(HttpManager::new(proxy.addr, proxy.credentials));
}
}
ttp.run();
if let Err(e) = ttp.run() {
log::error!("{e}");
}
}