包旅行
这是一个非常基本的问题。借助 skbuff 结构,我们可以使用 tcp udp 和 mac header。是否可以从内核读取http标头的内容。即使我们能够在用户空间本身处理这种情况。只是为了便于理解我问这个问题。
如果是这样,那么http header将存储在skbuff结构中的哪里。 (即)在数据部分
感谢
Paavaanan。
This is very basic question. With the help of skbuff structure we can able to play with tcp udp and mac header. Is it possible to read the contents of http header from kernel. Even though we can able to handle this situation in userspace itself. Just for the sake of understandability me asking this question.
If so it is possible, where does the http header will be stored in skbuff structure. (i.e.) in data part
Thanks
Paavaanan.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能希望查看 TUX 内核 Web 服务器以获取项目指导。我不建议使用 TUX(
sendfile(2)
系统调用通过允许单副本文件发送而消除了 TUX 潜在速度优势的很大一部分,并且存在以下风险:由于减少了上下文切换,在内核中运行服务器远远超过任何潜在的剩余速度优势)。但出于学习目的,TUX 应该表现不错。
You may wish to look into the TUX in-kernel web server for guidance in your project. I wouldn't recommend using TUX (the
sendfile(2)
system call obviates a huge part of TUX's potential speed advantage by allowing single-copy file sending, and the risks of running a server in the kernel far outweigh any potential remaining speed advantage due to reducing context switching).But for learning purposes, TUX should do nicely.
从内核的角度来看,HTTP 标头只是连接上数据的一部分。但请注意,它可能分布在多个 skb 中。
From the point of view of the kernel, the HTTP header is just part of the data on the connection. Note however that it may be spread across multiple
skb
s.