问题描述 sk_buff和ethhdr结构体中怎么获得源mac地址?并将类型转换 请教各位大神,写的这段代码功能没有实现,求指教! static size_t _format_mac_addr(char *buf, int buflen,const unsigned char *addr, int len)//mac地址转换函数,转为 aa:aa:aa:aa:aa:aa 这类 { int i; char *cp = buf; for (i = 0; i < len; i++) { cp += s
问题描述 c语言结构体中指针数组怎样赋值 定义一个结构体struct AS{ char *p[1]:}:怎样用gets函数给指针数组赋值呢? 解决方案 看Unix/Linux上的man: Standard C Library Functions gets(3C)NAME gets fgets - get a string from a stream SYNOPSIS #include char *gets(char *s); char *fgets(char *s int n FILE *str