lwip-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lwip-commits] [SCM] lwIP - A Lightweight TCPIP stack branch, master, up


From: Erik Ekman
Subject: [lwip-commits] [SCM] lwIP - A Lightweight TCPIP stack branch, master, updated. STABLE-2_1_0_RELEASE-418-g264a5a3
Date: Tue, 7 Jul 2020 12:52:36 -0400 (EDT)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "lwIP - A Lightweight TCPIP stack".

The branch, master has been updated
       via  264a5a3e9794c33e6bd11c35ef14a009d2625c5f (commit)
      from  047f3b33068b17d6d84c0ae5d7457cdcffb90bd3 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 264a5a3e9794c33e6bd11c35ef14a009d2625c5f
Author: Erik Ekman <erik@kryo.se>
Date:   Tue Jul 7 16:55:52 2020 +0200

    Rename IP and Ethernet equality checkers from _cmp to _eq
    
    Functions ending in cmp are expected to return 0 on equality but these
    return non-zero.
    
    eth_addr_cmp -> eth_addr_eq
    
    ip_addr_cmp -> ip_addr_eq
    ip4_addr_cmp -> ip4_addr_eq
    ip6_addr_cmp -> ip6_addr_eq
    
    ip_addr_netcmp -> ip_addr_net_eq
    ip4_addr_netcmp -> ip4_addr_net_eq
    ip6_addr_netcmp -> ip6_addr_net_eq
    
    ip_addr_cmp_zoneless -> ip_addr_zoneless_eq
    ip6_addr_cmp_zoneless -> ip6_addr_zoneless_eq
    
    ip6_addr_cmp_zone -> ip6_addr_zone_eq
    ip6_addr_netcmp_zoneless -> ip6_addr_net_zoneless_eq
    ip6_addr_nethostcmp -> ip6_addr_nethost_eq
    ip6_addr_cmp_packed -> ip6_addr_packed_eq
    ip6_addr_cmp_solicitednode -> ip6_addr_solicitednode_eq
    
    All call sites have been changed, and fallback macros have been added to not
    break external users.

-----------------------------------------------------------------------

Summary of changes:
 UPGRADING                        |  2 ++
 contrib/addons/tcp_md5/tcp_md5.c |  4 ++--
 src/api/api_lib.c                |  2 +-
 src/api/api_msg.c                |  2 +-
 src/api/sockets.c                |  6 +++---
 src/apps/lwiperf/lwiperf.c       |  2 +-
 src/apps/mdns/mdns.c             |  8 ++++----
 src/apps/snmp/snmp_mib2_ip.c     |  6 +++---
 src/apps/snmp/snmp_mib2_tcp.c    | 12 +++++------
 src/apps/snmp/snmp_mib2_udp.c    |  6 +++---
 src/apps/sntp/sntp.c             |  2 +-
 src/apps/tftp/tftp.c             |  2 +-
 src/core/dns.c                   |  4 ++--
 src/core/ipv4/acd.c              | 12 +++++------
 src/core/ipv4/autoip.c           |  4 ++--
 src/core/ipv4/etharp.c           | 12 +++++------
 src/core/ipv4/igmp.c             | 24 +++++++++++-----------
 src/core/ipv4/ip4.c              | 10 ++++-----
 src/core/ipv4/ip4_addr.c         |  2 +-
 src/core/ipv4/ip4_frag.c         |  4 ++--
 src/core/ipv6/ip6.c              | 18 ++++++++--------
 src/core/ipv6/ip6_frag.c         |  4 ++--
 src/core/ipv6/mld6.c             |  2 +-
 src/core/ipv6/nd6.c              | 38 +++++++++++++++++-----------------
 src/core/netif.c                 | 10 ++++-----
 src/core/raw.c                   |  6 +++---
 src/core/tcp.c                   | 12 +++++------
 src/core/tcp_in.c                | 10 ++++-----
 src/core/udp.c                   | 20 +++++++++---------
 src/include/lwip/ip4_addr.h      | 13 ++++++++++--
 src/include/lwip/ip6_addr.h      | 35 +++++++++++++++++++++++---------
 src/include/lwip/ip6_zone.h      |  6 ++++--
 src/include/lwip/ip_addr.h       | 44 +++++++++++++++++++++++++++++-----------
 src/include/lwip/prot/ethernet.h |  4 +++-
 src/netif/lowpan6.c              |  2 +-
 src/netif/lowpan6_common.c       |  2 +-
 src/netif/ppp/ppp.c              |  4 ++--
 src/netif/ppp/pppol2tp.c         |  2 +-
 src/netif/ppp/vj.c               |  8 ++++----
 test/unit/core/test_dns.c        |  3 +--
 test/unit/ip6/test_ip6.c         |  4 ++--
 41 files changed, 211 insertions(+), 162 deletions(-)


hooks/post-receive
-- 
lwIP - A Lightweight TCPIP stack



reply via email to

[Prev in Thread] Current Thread [Next in Thread]