This website requires JavaScript.
Explore
Help
Register
Sign In
Mirrors_Framework
/
nuttx
Watch
1
Star
0
Fork
0
mirror of
https://github.com/apache/nuttx.git
synced
2026-09-12 23:10:56 +08:00
Code
Issues
Actions
8
Packages
Projects
Releases
Wiki
Activity
Files
fdf4e40b6a5adce1e7d5f27f844c19cb2755052c
nuttx
/
net
/
socket
T
History
Gregory Nutt
f81ef55834
Trivial re-ordering of socket option bit numbers to match order presented on OpenGroup.org.
2017-11-12 08:17:46 -06:00
..
accept.c
…
bind.c
…
connect.c
…
getsockname.c
…
getsockopt.c
net/usrsock: fix compiler warnings, mostly about nxsem_post
2017-10-25 07:31:14 -06:00
Kconfig
…
listen.c
…
Make.defs
…
net_checksd.c
…
net_clone.c
There was a reference counting problem in the TPC logic of net_clone(). net_clone() which is the common logic underlying dup() and dup2() for sockets. When net_clone() calls net_start_monitor() and net_start_monitor() returns a failure (because the underlying TCP connection) then net_clone() must back out the reference count on the structure. Problem noted by Pascal Speck and this implementation of the solution is based on his suggestion.
2017-10-19 11:09:23 -06:00
net_close.c
…
net_dupsd2.c
There was a reference counting problem in the TPC logic of net_clone(). net_clone() which is the common logic underlying dup() and dup2() for sockets. When net_clone() calls net_start_monitor() and net_start_monitor() returns a failure (because the underlying TCP connection) then net_clone() must back out the reference count on the structure. Problem noted by Pascal Speck and this implementation of the solution is based on his suggestion.
2017-10-19 11:09:23 -06:00
net_dupsd.c
…
net_poll.c
…
net_sendfile.c
…
net_sockets.c
Squashed commit of the following:
2017-10-03 15:35:24 -06:00
net_sockif.c
This change adds support for semi-standard IPPROTO_ICMP AF_INET datagram sockets. This replaces the old ad hoc, nonstandard way of implementing ping with a more standard, socket interface.
2017-10-23 08:45:12 -06:00
net_timeo.c
…
net_vfcntl.c
fs/vfs and net/socket: fcntl() is not return success fail for F_SETFL. Reported by Jussi Kivilinna.
2017-10-06 08:27:38 -06:00
recv.c
…
recvfrom.c
Adds OS internal functions nx_send(), ns_recv(), and nx_recvfrom() which are functionally equivalent to send(), recv(), and recvfrom() except that they do not set the errno variable and do not cause cancellation points.
2017-10-11 09:25:43 -06:00
send.c
net/socket: psock_send/psock_sendto: remove assert check for null psock and buf input pointers. Removes check as 'psock == NULL' altogether because that checked for later in psock_send and psock_sendto. Change null check for 'buf' so that it is handled same as in recvfrom.c (return -EINVAL instead of
2017-10-11 11:04:05 -06:00
sendto.c
net/socket: psock_send/psock_sendto: remove assert check for null psock and buf input pointers. Removes check as 'psock == NULL' altogether because that checked for later in psock_send and psock_sendto. Change null check for 'buf' so that it is handled same as in recvfrom.c (return -EINVAL instead of
2017-10-11 11:04:05 -06:00
setsockopt.c
net/usrsock: fix compiler warnings, mostly about nxsem_post
2017-10-25 07:31:14 -06:00
socket.c
fs/userfs: Some fixes from initial testing.
2017-10-31 15:26:58 -06:00
socket.h
Trivial re-ordering of socket option bit numbers to match order presented on OpenGroup.org.
2017-11-12 08:17:46 -06:00