mirror of
https://github.com/Waujito/youtubeUnblock.git
synced 2024-12-22 06:15:31 +00:00
Fix #155 synfake option deleted but present in openwrt
This commit is contained in:
parent
ee56b67d20
commit
37a517eb8a
17
args.c
17
args.c
@ -426,6 +426,23 @@ int parse_args(int argc, char *argv[]) {
|
||||
goto invalid_opt;
|
||||
}
|
||||
|
||||
break;
|
||||
case OPT_SYNFAKE:
|
||||
if (strcmp(optarg, "1") == 0) {
|
||||
sect_config->synfake = 1;
|
||||
} else if (strcmp(optarg, "0") == 0) {
|
||||
sect_config->synfake = 0;
|
||||
} else {
|
||||
goto invalid_opt;
|
||||
}
|
||||
|
||||
break;
|
||||
case OPT_SYNFAKE_LEN:
|
||||
num = parse_numeric_option(optarg);
|
||||
if (errno != 0 || num < 0) {
|
||||
goto invalid_opt;
|
||||
}
|
||||
sect_config->synfake_len = num;
|
||||
break;
|
||||
default:
|
||||
goto error;
|
||||
|
Loading…
Reference in New Issue
Block a user