检查输入数据是什么的逻辑

发布于 2024-11-04 10:22:09 字数 119 浏览 1 评论 0原文

任何人都可以帮助我解决这个逻辑,当我输入源 ip 时,应该调用特定函数 XXX() 如果我输入目标 ip 或目标端口或源端口,它应该调用不同的函数,比如 YYY(),我的疑问是如何我可以识别输入的地址是源IP地址还是目的地址

can any one help me in this logic, when i enter a source ip is should call a particular function XXX()if i enter destination ip or destination port or source port it should call a different function say YYY(), my doubt is how can i recognise whether the input address is source ip address or destination address

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酷炫老祖宗 2024-11-11 10:22:09

假设您指的是命令行参数。
您的程序应该有选项。
例如:

program_name --source-ip <source ip> --source-port <source-port> --destination-ip <destination-ip> --destination-port <destination-port>

然后您应该解析这些并相应地调用函数。

With assumption that you are referring to Command Line Arguments.
You should have options to your program.
For example :

program_name --source-ip <source ip> --source-port <source-port> --destination-ip <destination-ip> --destination-port <destination-port>

You should then parse those and call the functions accordingly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文