作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在内核模块中编写unix套接字,当我尝试编译时,出现以下错误:
error: ‘struct msghdr’ has no member named ‘msg_iov’
error: ‘struct msghdr’ has no member named ‘msg_iovlen’
我尝试阅读 msghdr
的实现,但没有找到任何内容。
ret = kernel_recvmsg(sock, msg, vec, BUFFER_SIZE, BUFFER_SIZE, 0);
msg_iov = msg->msg_iov;
msg_iovlen = msg->msg_iovlen;
最佳答案
看来您使用的 Linux 内核 >= 3.19。自 3.19 内核起 struct msghdr
分为struct msghdr
和struct user_msghdr
。
现在struct user_msghdr
包含msg_iov
和msg_iovlen
。但是struct iov_iter
必须使用 代替 msg_iov
和 msg_iovlen
。
类似于:
struct msghdr msg;
struct iovec iov;
iov.iov_base = buffer;
iov.iov_len = length;
/* fill in msg */
#if LINUX_VERSION_CODE < KERNEL_VERSION(3,19,0)
msg.msg_iov = &iov;
msg.msg_iovlen = 1;
#else
iov_iter_init(&msg.msg_iter, READ, &iov, 1, length);
#endif
/* ... */
/* call sock_recvmsg() or kernel_recvmsg() */
关于c - 错误: ‘struct msghdr’ has no member named ‘msg_iov’ ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57388814/
我正在内核模块中编写unix套接字,当我尝试编译时,出现以下错误: error: ‘struct msghdr’ has no member named ‘msg_iov’ error: ‘struc
我是一名优秀的程序员,十分优秀!