当前位置: 技术问答>linux和unix
linux2.6中的使用sock_create 报错误too few arguments,这是为什么???
来源: 互联网 发布时间:2015-07-29
本文导语: 在linux2.6中,我想在内核中来发送数据,但是当我调用sock_create时,报错,错误信息如下:too few arguments to function 'sock_create',源代码如下: int init_module(void) { int error; struct msghdr udpmsg; mm_segment_t oldfs; str...
在linux2.6中,我想在内核中来发送数据,但是当我调用sock_create时,报错,错误信息如下:too few arguments to function 'sock_create',源代码如下:
int init_module(void)
{
int error;
struct msghdr udpmsg;
mm_segment_t oldfs;
struct iovec iov;
char buffer[] = "A small test msg";
printk("Elvis has entered the buildingn");
error = sock_create(PF_INET,SOCK_DGRAM,IPPROTO_UDP,&udpsock);
if (error
int init_module(void)
{
int error;
struct msghdr udpmsg;
mm_segment_t oldfs;
struct iovec iov;
char buffer[] = "A small test msg";
printk("Elvis has entered the buildingn");
error = sock_create(PF_INET,SOCK_DGRAM,IPPROTO_UDP,&udpsock);
if (error
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。