执行流量整形的 AC 守护进程

发布于 2024-07-16 13:26:09 字数 193 浏览 14 评论 0原文

我正在开发一个 C 守护进程,它监视配置文件(使用 Web 界面更新),然后使用 Linux“tc”(流量控制)命令来更新系统流量整形配置。

实际调用 tc 程序的好方法是什么? 我应该使用 exec 系列吗? 有没有一个我可以使用的更优雅的库? 使用 exec 或 system 对我来说似乎有点老套。

有任何想法吗?

I'm working on a C daemon that monitors a configuration file (updated using a web interface) and then uses the Linux "tc" (traffic control) command to update the systems traffic shaping configuration.

What's a good way to actually invoke the tc program? Should I use the exec family? Is there a library I can use that would be a bit more elegant? Using exec or system just seems a bit hacky to me.

Any ideas?

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

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

发布评论

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

评论(2

追我者格杀勿论 2024-07-23 13:26:09

为什么不查看tc程序的源代码并找出如何直接从守护程序修改系统流量整形配置? 这将节省您调用 tc 并解析其输出。

Why don't you look at the source code of the tc program and figure out how to modify the systems traffic shaping configuration directly from your deamon? That would save you calling tc and parsing it's output.

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