资源描述:
《lwip之socket的实现》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、LWIP之SOCKET的实现http://bluefish.blog.51cto.com/214870/158413Lwip协议栈的实现目的,无非是要上层用来实现app的socket编程。好,我们就从socket开始。为了兼容性,lwip的socket应该也是提供标准的socket接口函数,恩,没错,在srcincludelwipsocket.h文件中可以看到下面的宏定义:#ifLWIP_COMPAT_SOCKETS#defineaccept(a,b,c)lwip_accept(a,b,c)#definebind(a,b
2、,c)lwip_bind(a,b,c)#defineshutdown(a,b)lwip_shutdown(a,b)#defineclosesocket(s)lwip_close(s)#defineconnect(a,b,c)lwip_connect(a,b,c)#definegetsockname(a,b,c)lwip_getsockname(a,b,c)#definegetpeername(a,b,c)lwip_getpeername(a,b,c)#definesetsockopt(a,b,c,d,e)lwip_setsoc
3、kopt(a,b,c,d,e)#definegetsockopt(a,b,c,d,e)lwip_getsockopt(a,b,c,d,e)#definelisten(a,b)lwip_listen(a,b)#definerecv(a,b,c,d)lwip_recv(a,b,c,d)#definerecvfrom(a,b,c,d,e,f)lwip_recvfrom(a,b,c,d,e,f)#definesend(a,b,c,d)lwip_send(a,b,c,d)#definesendto(a,b,c,d,e,f)lwip_se
4、ndto(a,b,c,d,e,f)#definesocket(a,b,c)lwip_socket(a,b,c)#defineselect(a,b,c,d,e)lwip_select(a,b,c,d,e)#defineioctlsocket(a,b,c)lwip_ioctl(a,b,c)#ifLWIP_POSIX_SOCKETS_IO_NAMES#defineread(a,b,c)lwip_read(a,b,c)#definewrite(a,b,c)lwip_write(a,b,c)#defineclose(s)lwip_clo
5、se(s)先不说实际的实现函数,光看这些定义的宏,就是标准socket所必须有的接口。接着看这些实际的函数实现。这些函数实现在srcapisocket.c中。先看下接受连接的函数,这个是tcp的原型:intlwip_accept(ints,structsockaddr*addr,socklen_t*addrlen)可以看到这里的socket类型参数s,实际上是个int型在这个函数中的第一个函数调用是sock=get_socket(s);这里的sock变量类型是lwip_socket,定义如下:/**Containsalli
6、nternalpointersandstatesusedforasocket*/structlwip_socket{/**socketscurrentlyarebuiltonnetconns,eachsockethasonenetconn*/structnetconn*conn;/**datathatwasleftfromthepreviousread*/structnetbuf*lastdata;/**offsetinthedatathatwasleftfromthepreviousread*/u16_tlastoffset
7、;/**numberoftimesdatawasreceived,setbyevent_callback(),testedbythereceiveandselectfunctions*/u16_trcvevent;/**numberoftimesdatawasreceived,setbyevent_callback(),testedbyselect*/u16_tsendevent;/**socketflags(currently,onlyusedforO_NONBLOCK)*/u16_tflags;/**lasterrorth
8、atoccurredonthissocket*/interr;};好,这个结构先不管它,接着看下get_socket函数的实现【也是在srcapisocket.c文件中】,在这里我们看到这样一条语句sock=&sockets[s];很明显,返回值也是这个sock,它是根据