mirror of https://github.com/bol-van/zapret/
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.
25 lines
459 B
25 lines
459 B
# this custom script applies tpws-socks mode as it would be with MODE=tpws-socks
|
|
|
|
OVERRIDE=tpws-socks
|
|
|
|
zapret_custom_daemons()
|
|
{
|
|
# $1 - 1 - run, 0 - stop
|
|
|
|
local MODE_OVERRIDE=$OVERRIDE
|
|
zapret_do_daemons $1
|
|
}
|
|
zapret_custom_firewall()
|
|
{
|
|
# $1 - 1 - run, 0 - stop
|
|
|
|
local MODE_OVERRIDE=$OVERRIDE
|
|
zapret_do_firewall_rules_ipt $1
|
|
}
|
|
zapret_custom_firewall_nft()
|
|
{
|
|
# stop logic is not required
|
|
|
|
local MODE_OVERRIDE=$OVERRIDE
|
|
zapret_apply_firewall_rules_nft
|
|
}
|
|
|