incubator-nuttx/net/pkt
Gregory Nutt 42a0796615 Squashed commit of the following:
sched/semaphore:  Add nxsem_post() which is identical to sem_post() except that it never modifies the errno variable.  Changed all references to sem_post in the OS to nxsem_post().

    sched/semaphore:  Add nxsem_destroy() which is identical to sem_destroy() except that it never modifies the errno variable.  Changed all references to sem_destroy() in the OS to nxsem_destroy().

    libc/semaphore and sched/semaphore:  Add nxsem_getprotocol() and nxsem_setprotocola which are identical to sem_getprotocol() and set_setprotocol() except that they never modifies the errno variable.  Changed all references to sem_setprotocol in the OS to nxsem_setprotocol().  sem_getprotocol() was not used in the OS
2017-10-03 15:35:24 -06:00
..
Kconfig Socket I/F: Cleanup for good CONFIG_NET_PKT build. 2017-07-14 13:42:31 -06:00
Make.defs Socket I/F: Add recvfrom() method to interface. 2017-07-12 17:36:05 -06:00
pkt.h net/: Versions of psock_send() and pock_sendto() should not set errno. That is taken care of at a higher level in the send()/sendto() implementation as appropriate. 2017-09-30 06:41:56 -06:00
pkt_callback.c Be consistent... Use Name: consistent in function headers vs Function: 2017-04-21 16:33:14 -06:00
pkt_conn.c Squashed commit of the following: 2017-10-03 15:35:24 -06:00
pkt_finddev.c Remove CONFIG_NETDEV_MULTINIC. This increases code size by a little, but greatly reduces the complexity of the network code. 2017-08-08 14:24:12 -06:00
pkt_input.c Networking: A little more wording changes related to interrupts vs. events 2017-08-29 15:08:38 -06:00
pkt_poll.c Networking: A little more wording changes related to interrupts vs. events 2017-08-29 15:08:38 -06:00
pkt_recvfrom.c Squashed commit of the following: 2017-10-03 15:35:24 -06:00
pkt_send.c Squashed commit of the following: 2017-10-03 15:35:24 -06:00
pkt_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