如何在libtorrent中设置客户端名称

时间:2015-02-09 04:59:05

标签: c# c++ libtorrent-rasterbar

我在客户端开发了torrent程序,并使用rutorrent播种文件。即时通讯使用rutorrent中的插件对使用我的torrent应用程序来监控号码客户端。但在客户端选项卡中只显示未知(xxxx)。如何使用libtorrent设置名称。 shell将在客户端显示。 enter image description here

1 个答案:

答案 0 :(得分:1)

通过client_test.cpp阅读,然后您将看到您需要在设置结构中传递useragent的详细信息。您需要在开始会话之前执行此操作,并且您的客户端名称需要/之后,即:

 settings.user_agent = "My Own Client/" LIBTORRENT_VERSION;