执行流量整形的 AC 守护进程
我正在开发一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么不查看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.
看看popen http://linux.die.net/man/3/popen
Look at popen http://linux.die.net/man/3/popen