You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by ma...@apache.org on 2022/09/09 11:56:18 UTC

[incubator-nuttx] branch master updated (d10cd8d585 -> 644c4afeed)

This is an automated email from the ASF dual-hosted git repository.

masayuki pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git


    from d10cd8d585 net/procfs: add udp profs support
     add 644c4afeed usrsock:refine usrsock's architecture

No new revisions were added by this update.

Summary of changes:
 include/nuttx/net/usrsock.h       |  48 +++
 net/usrsock/Make.defs             |   2 +-
 net/usrsock/usrsock.h             |  24 +-
 net/usrsock/usrsock_accept.c      |   2 +-
 net/usrsock/usrsock_bind.c        |   2 +-
 net/usrsock/usrsock_close.c       |   2 +-
 net/usrsock/usrsock_conn.c        |   3 +-
 net/usrsock/usrsock_connect.c     |   9 +-
 net/usrsock/usrsock_dev.c         | 676 ++--------------------------------
 net/usrsock/usrsock_devif.c       | 740 ++++++++++++++++++++++++++++++++++++++
 net/usrsock/usrsock_event.c       |   4 +-
 net/usrsock/usrsock_getpeername.c |   2 +-
 net/usrsock/usrsock_getsockname.c |   2 +-
 net/usrsock/usrsock_getsockopt.c  |   2 +-
 net/usrsock/usrsock_ioctl.c       |   2 +-
 net/usrsock/usrsock_listen.c      |   2 +-
 net/usrsock/usrsock_recvmsg.c     |   2 +-
 net/usrsock/usrsock_sendmsg.c     |   2 +-
 net/usrsock/usrsock_setsockopt.c  |   2 +-
 net/usrsock/usrsock_socket.c      |   2 +-
 20 files changed, 847 insertions(+), 683 deletions(-)
 create mode 100644 net/usrsock/usrsock_devif.c