Skip to content

Commit

Permalink
trival
Browse files Browse the repository at this point in the history
  • Loading branch information
wangyu- committed Aug 31, 2018
1 parent 4bfbe97 commit 3a1050f
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions misc.cpp
Expand Up @@ -792,6 +792,16 @@ void process_arg(int argc, char *argv[]) //process all options
raw_ip_version=local_addr.get_type();
}

if(auto_add_iptables_rule&& use_tcp_dummy_socket)
{
mylog(log_error,"-a,--auto-rule is not supposed to be used with easyfaketcp mode, you are likely making a mistake, but we can try to continue\n");
}

if(keep_rule&& use_tcp_dummy_socket)
{
mylog(log_error,"--keep-rule is not supposed to be used with easyfaketcp mode, you are likely making a mistake, but we can try to continue\n");
}

mylog(log_info,"important variables: ");

log_bare(log_info,"log_level=%d:%s ",log_level,log_text[log_level]);
Expand All @@ -814,15 +824,6 @@ void process_arg(int argc, char *argv[]) //process all options

log_bare(log_info,"\n");

if(auto_add_iptables_rule&& use_tcp_dummy_socket)
{
mylog(log_error,"-a,--auto-rule is not supposed to be used with easyfaketcp mode, you are likely making a mistake, but we can try to continue\n");
}

if(keep_rule&& use_tcp_dummy_socket)
{
mylog(log_error,"--keep-rule is not supposed to be used with easyfaketcp mode, you are likely making a mistake, but we can try to continue\n");
}
}

void pre_process_arg(int argc, char *argv[])//mainly for load conf file
Expand Down

0 comments on commit 3a1050f

Please sign in to comment.