Added 'network.bind_address.ipv{4,6}.set' commands.

This commit is contained in:
Jari Sundell
2025-10-04 13:24:08 +02:00
committed by GitHub
parent 946dc54f9b
commit bf53700f97
5 changed files with 51 additions and 2 deletions
+4
View File
@@ -497,6 +497,8 @@ main(int argc, char** argv) {
lt_log_print_dump(torrent::LOG_CRITICAL, e.backtrace().c_str(), e.backtrace().size(),
"Caught internal_error: '%s'.", e.what());
torrent::log_cleanup();
return -1;
} catch (std::exception& e) {
@@ -505,6 +507,8 @@ main(int argc, char** argv) {
std::cout << "rtorrent: caught" << typeid(e).name() << " : " << e.what() << std::endl;
lt_log_print(torrent::LOG_CRITICAL, "Caught exception: '%s'.", e.what());
torrent::log_cleanup();
return -1;
}