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 2023/01/17 06:01:44 UTC

[nuttx] branch master updated (b1899ffbfd -> ff3733b5b5)

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/nuttx.git


    from b1899ffbfd fs: Support O_NOFOLLOW flag
     add ff3733b5b5 Support fragmentation and reassembly

No new revisions were added by this update.

Summary of changes:
 include/nuttx/net/icmp.h      |    5 +
 include/nuttx/net/icmpv6.h    |    5 +
 include/nuttx/net/ip.h        |    2 +
 include/nuttx/net/ipv6ext.h   |   28 +
 include/nuttx/net/netdev.h    |    6 +
 net/Kconfig                   |    1 +
 net/Makefile                  |    1 +
 net/README.txt                |    1 +
 net/devif/devif.h             |   15 +
 net/devif/devif_iobsend.c     |   10 +
 net/devif/devif_loopback.c    |   19 +-
 net/devif/devif_poll.c        |  100 +++-
 net/devif/ipv4_input.c        |   13 +
 net/devif/ipv6_input.c        |  107 +++-
 net/icmp/icmp_sendmsg.c       |    2 +
 net/icmpv6/icmpv6_sendmsg.c   |    2 +
 net/ipforward/ipv4_forward.c  |   12 +-
 net/ipforward/ipv6_forward.c  |   10 +-
 net/ipfrag/Kconfig            |   23 +
 net/{nat => ipfrag}/Make.defs |   22 +-
 net/ipfrag/ipfrag.c           | 1283 +++++++++++++++++++++++++++++++++++++++++
 net/ipfrag/ipfrag.h           |  388 +++++++++++++
 net/ipfrag/ipv4_frag.c        |  443 ++++++++++++++
 net/ipfrag/ipv6_frag.c        |  670 +++++++++++++++++++++
 net/netdev/netdev_carrier.c   |    7 +
 25 files changed, 3125 insertions(+), 50 deletions(-)
 create mode 100644 net/ipfrag/Kconfig
 copy net/{nat => ipfrag}/Make.defs (76%)
 mode change 100644 => 100755
 create mode 100755 net/ipfrag/ipfrag.c
 create mode 100755 net/ipfrag/ipfrag.h
 create mode 100755 net/ipfrag/ipv4_frag.c
 create mode 100755 net/ipfrag/ipv6_frag.c