We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在Python3.6.8中,需要将main函数中定义的子函数build_req和build_rep,调整到调用的语句之前。 手动停止的办法参考
build_req
build_rep
import signal def quit(signum,frame): print('终止攻击') sys.exit(0)
signal.signal(signal.SIGINT,quit) signal.signal(signal.SIGTERM,quit) while True: ......
The text was updated successfully, but these errors were encountered:
No branches or pull requests
在Python3.6.8中,需要将main函数中定义的子函数
build_req
和build_rep
,调整到调用的语句之前。手动停止的办法参考
The text was updated successfully, but these errors were encountered: