You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2021/07/08 08:05:53 UTC

[incubator-nuttx] branch master updated (a7c9f70 -> 1dbe8de)

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

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


    from a7c9f70  boards: esp32-devkitc: Update smp/defconfig
     add 9f3f4fb  net/local: extern local_generate_instance_id() interface
     add 940a07e  net/socketpair: move socketpair implement into socket internal
     add 1dbe8de  net/local: add AF_[UNIX|LOCAL] socketpair support

No new revisions were added by this update.

Summary of changes:
 include/nuttx/net/net.h        |  22 +++++
 libs/libc/net/Make.defs        |   2 +-
 libs/libc/net/lib_socketpair.c | 186 ----------------------------------------
 net/inet/inet_sockif.c         | 151 ++++++++++++++++++++++++++++++++-
 net/local/local.h              |  10 +++
 net/local/local_connect.c      |  44 +++++-----
 net/local/local_sockif.c       | 105 ++++++++++++++++++++++-
 net/socket/Make.defs           |   2 +-
 net/socket/socketpair.c        | 187 +++++++++++++++++++++++++++++++++++++++++
 9 files changed, 499 insertions(+), 210 deletions(-)
 delete mode 100644 libs/libc/net/lib_socketpair.c
 create mode 100644 net/socket/socketpair.c