gpt4 book ai didi

c++ - 在自定义 C/C++ 程序中获取 PPP0 接口(interface) Tx/Rx 字节的最简单方法是什么?

转载 作者:太空宇宙 更新时间:2023-11-04 11:56:33 25 4
gpt4 key购买 nike

我需要在我的 C/C++ 程序中显示有关三个网络接口(interface)的 Tx/Rx 信息。其中之一是 ppp 接口(interface),但我的代码不适用于 ppp0。

我正在使用 getifaddrs 手册页中的代码示例(参见 man getifaddrs ),它基本上检查接口(interface)是否具有 AF_PACKET 系列,如果是,则它从 ifa->ifa_data 成员检索 Tx/Rx 信息ifaddrs 结构。但是此代码对于 ppp0 接口(interface)失败。在网上搜索了一下,找到了pppstats的源码,但是看着代码有点繁琐,因为里面有很多ifdefs,用于条件代码编译。我看到必须使用 ioctl,但我不知 Prop 体如何使用。

在 linux 系统中从 ppp0 获取 Tx/Rx 字节信息的最简单代码是什么?真的需要使用 ioctl 吗?

提前致谢

最佳答案

我目前处于同样的情况,今天花了一些时间研究和编码这个问题。我也是从查看 pppstats 源代码开始的。

What would be the simplest code to get the Tx/Rx bytes information from ppp0 in a linux system ? Is it really needed to use ioctl ?

虽然我无法真正回答您的确切问题,但这是我最终用于读取 ppp0 接口(interface)上的 RX/TX 字节的 (c++) 代码:

#include <linux/if_ppp.h>
#include <net/if.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <unistd.h>
{
auto sockfd = ::socket(PF_INET, SOCK_DGRAM, 0);
if (sockfd < 0) {
std::cout << "couldn't open socket : " << errno << std::endl;
return;
}

ifreq req {};
ppp_stats stats {};

req.ifr_data = reinterpret_cast<caddr_t>(&stats);
::strncpy(&req.ifr_name[0], "ppp0", sizeof(req.ifr_name));

auto ret = ::ioctl(sockfd, SIOCGPPPSTATS, &req);
if (ret < 0) {
std::cout << "couldn't get PPP statistics : " << errno << std::endl;
} else {
std::cout << "received bytes : " << stats.p.ppp_ibytes << std::endl;
std::cout << "sent bytes : " << stats.p.ppp_obytes << std::endl;
}

auto ret = ::close(sockfd);
if (ret != 0) {
std::cout << "couldn't close socket : " << errno << std::endl;
}
}

关于c++ - 在自定义 C/C++ 程序中获取 PPP0 接口(interface) Tx/Rx 字节的最简单方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54163647/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com