incubator-nuttx/net/local
Gregory Nutt 6a13faf702 net/local: Need to include nuttx/semaphore.h to eliminate some new warnings. 2017-10-08 13:31:03 -06:00
..
Kconfig Fix a few typos in the last commit 2016-07-19 13:40:54 -06:00
Make.defs Sockets: Initial steps to adde a socket interface to the networking. Each address family will have an interface that describes how to perform socket operations on that address family. Currently only a couple of methods are defined in the table as a proof of concept. More to come. Currently there are only tables for the INET/INET6 family, the Unix LOCAL family, and the raw PACKET family. Hopefully there will be AF_IEEE802154 and AF_BLUETOOTH comming down the pike. 2017-07-12 15:07:32 -06:00
local.h net/local: fix accept for local stream sockets 2017-07-31 07:36:54 -06:00
local_accept.c net/local: Need to include nuttx/semaphore.h to eliminate some new warnings. 2017-10-08 13:31:03 -06:00
local_bind.c Socket interface: Added getsockname[C() interfaces. 2017-07-14 09:04:19 -06:00
local_conn.c Squashed commit of the following: 2017-10-03 15:35:24 -06:00
local_connect.c net/local: Need to include nuttx/semaphore.h to eliminate some new warnings. 2017-10-08 13:31:03 -06:00
local_fifo.c
local_listen.c Networking: Fix typos introduced with network interface changes. 2017-07-14 06:02:49 -06:00
local_netpoll.c Squashed commit of the following: 2017-10-03 15:35:24 -06:00
local_recvfrom.c Socket I/F: Add recvfrom() method to interface. 2017-07-12 17:36:05 -06:00
local_recvutils.c
local_release.c net/local: Need to include nuttx/semaphore.h to eliminate some new warnings. 2017-10-08 13:31:03 -06:00
local_send.c Socket interface: Fix some configuration chaos. Sometime CONFIG_NET_UDP/TCP was used when CONFIG_NET_LOCAL_DGRAM/STREAM was intended. 2017-07-14 12:36:54 -06:00
local_sendpacket.c
local_sendto.c Be consistent... Use Name: consistent in function headers vs Function: 2017-04-21 16:33:14 -06:00
local_sockif.c Networking: Fix a race condition. The accept() operation is performed with the network locked. However, the network is unlocked BEFORE the connected state is set. Therefore, a context switch may occur and the socket may no longer be connected when it is marked so. Noted by Pascal Speck. 2017-08-31 07:23:19 -06:00