如何在内核模式下使用sys_sendto()?
我正在通过netfilter编写DDoS防火墙,我想在内核模式下将套接字数据包发送到另一台计算机。但编译器警告我符号“sys_sendto”未定义。那么如何在我的模块中使用这些 sys_socketcalls 呢?感谢您的帮助。
I'm writing a DDoS firewall by netfilter, I want to send a socket packet to another computer under kernel mode. But the compiler warned me that the symbol "sys_sendto" was undefined. So how can I use these sys_socketcalls in my module? Thank you for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
sock_sendmsg
函数,而不是调用sys_sendto
系统调用,这就是sys_sendto
已实现。Instead of calling the
sys_sendto
system call, you might be able to use thesock_sendmsg
function, which is howsys_sendto
is implemented.