包旅行

发布于 2024-10-15 03:31:57 字数 198 浏览 3 评论 0原文

这是一个非常基本的问题。借助 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 技术交流群。

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

发布评论

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

评论(2

黎歌 2024-10-22 03:31:57

您可能希望查看 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.

素罗衫 2024-10-22 03:31:57

从内核的角度来看,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 skbs.

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