diff options
Diffstat (limited to 'gethostsfile.cpp')
| -rw-r--r-- | gethostsfile.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gethostsfile.cpp b/gethostsfile.cpp new file mode 100644 index 00000000..72faa471 --- /dev/null +++ b/gethostsfile.cpp @@ -0,0 +1,16 @@ +#include <string.h> +#include <netdb.h> +#include <sys/system_properties.h> + +#include "gethostsfile.h" + +const char* gethostsfile() { + char hosts_setting[128]; + int prop_len = __system_property_get(AICP_HOSTS_SETTING_PROP, + hosts_setting); + if (prop_len > 0 && strncmp(hosts_setting, "true", 4) == 0) { + return AICP_PATH_ADBLOCK_HOSTS; + } else { + return _PATH_HOSTS; + } +} |
