发布时间:2017-11-09 16:01:00
struct ieee80211_hw 代表一个无线网卡硬件,里面包含该硬件的相关信息和状态.定义如下:struct ieee80211_hw - hardware information and state This structure contains the configuration and hardware information for an 802.11 PHY.点击(此处)折叠或打开struct ieee80211_hw { .........【阅读全文】
发布时间:2017-11-08 21:15:46
函数原型:int asprintf(char **strp, const char *fmt, ...);asprintf函数可以在不确定字符串长度时,根据格式化字符串(fmt)的长度来申请内存.如下:char *buffer;asprintf(buffer, "%s %s", TC_PATH, cmd); //通过%s %s动态组装buffer.....free(buffer); //使用完后记得free掉.千万要记得free!!!!!.........【阅读全文】