Libtorrent 设置枚举
Posted
技术标签:
【中文标题】Libtorrent 设置枚举【英文标题】:Libtorrent settings enum 【发布时间】:2015-04-04 16:00:56 【问题描述】:在 Libtorrent 会话中有一些 enurm,我对如何设置 enurm 有点困惑,例如:
struct session_settings
enum suggest_mode_t
no_piece_suggestions,
suggest_read_cache,
;
no_piece_suggestions 为 0,suggest_read_cache 为 1,其中 no_piece_suggestions 为默认值那么如何将 suggest_read_cache 设为默认值?
【问题讨论】:
【参考方案1】:默认只是意味着如果你不设置它会是什么设置。
如果要更改默认值,请更改 libtorrent 源文件 src/session.cpp(其中定义了 session_settings 构造函数)。
如果您只想更改会话对象的设置,请构造一个 session_settings 对象,将 session_settings::suggest_mode 设置为 session_settings::suggest_read_cache 然后使用您的设置对象调用 session::set_settings()。
【讨论】:
以上是关于Libtorrent 设置枚举的主要内容,如果未能解决你的问题,请参考以下文章