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 2022/11/29 10:36:23 UTC

[nuttx] branch master updated (d54a20b393 -> 391b501639)

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 d54a20b393 net/tcp/udp: remove all domain assertion
     add 391b501639 net: extract l3 header build code into new functions

No new revisions were added by this update.

Summary of changes:
 include/nuttx/net/ip.h                             |   9 +
 include/nuttx/net/netdev.h                         |  21 --
 net/devif/ipv4_input.c                             |   3 +-
 net/icmp/icmp_reply.c                              |  27 +-
 net/icmp/icmp_sendmsg.c                            |  29 +--
 net/icmpv6/icmpv6_advertise.c                      |  22 +-
 net/icmpv6/icmpv6_radvertise.c                     |  26 +-
 net/icmpv6/icmpv6_reply.c                          |  23 +-
 net/icmpv6/icmpv6_rsolicit.c                       |  27 +-
 net/icmpv6/icmpv6_sendmsg.c                        |  19 +-
 net/icmpv6/icmpv6_solicit.c                        |  29 +--
 net/igmp/igmp_send.c                               |  34 +--
 net/inet/Make.defs                                 |   4 +-
 net/inet/inet.h                                    |  58 ++++-
 net/inet/inet_globals.c                            |   6 -
 net/inet/ipv4_build_header.c                       | 109 ++++++++
 .../ipv6_build_header.c}                           |  57 +++--
 net/mld/mld_send.c                                 |  24 +-
 net/tcp/tcp_send.c                                 | 280 +++++----------------
 net/udp/udp_send.c                                 |  61 +----
 net/utils/Kconfig                                  |   2 +-
 net/utils/net_ipchksum.c                           |   5 +-
 net/utils/utils.h                                  |  21 ++
 23 files changed, 347 insertions(+), 549 deletions(-)
 create mode 100644 net/inet/ipv4_build_header.c
 copy net/{utils/net_ipv6_maskcmp.c => inet/ipv6_build_header.c} (54%)