mirror of https://github.com/trapexit/mergerfs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
447 B
33 lines
447 B
#include "config_proxy_ioprio.hpp"
|
|
|
|
#include "ioprio.hpp"
|
|
#include "from_string.hpp"
|
|
|
|
|
|
ProxyIOPrio::ProxyIOPrio(const bool b_)
|
|
{
|
|
ioprio::enable(b_);
|
|
}
|
|
|
|
std::string
|
|
ProxyIOPrio::to_string(void) const
|
|
{
|
|
if(ioprio::enabled())
|
|
return "true";
|
|
return "false";
|
|
}
|
|
|
|
int
|
|
ProxyIOPrio::from_string(const std::string_view s_)
|
|
{
|
|
int rv;
|
|
bool enable;
|
|
|
|
rv = str::from(s_,&enable);
|
|
if(rv)
|
|
return rv;
|
|
|
|
ioprio::enable(enable);
|
|
|
|
return 0;
|
|
}
|