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: Simon Goldschmidt
Subject: [lwip-commits] [SCM] lwIP - A Lightweight TCPIP stack branch, master, updated. ce7e31cd043de1b155474364a14481f5110aa4a6
Date: Thu, 09 Apr 2015 20:21:34 +0000

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  ce7e31cd043de1b155474364a14481f5110aa4a6 (commit)
      from  4ff1eb1890ad54d17959aac3950cc6467a9c7034 (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 ce7e31cd043de1b155474364a14481f5110aa4a6
Author: sg <address@hidden>
Date:   Thu Apr 9 22:21:15 2015 +0200

    task #12722 (improve IPv4/v6 address handling): renamed ip_addr_t to 
ip4_addr_t, renamed ipX_addr_t to ip_addr_t and added IP version;
    ip_addr_t is used for all generic IP addresses for the API, ip(4/6)_addr_t 
are only used internally or when initializing netifs or when calling 
version-related functions

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

Summary of changes:
 CHANGELOG                        |    6 +
 src/api/api_lib.c                |   12 +-
 src/api/api_msg.c                |   40 +++---
 src/api/netbuf.c                 |    4 +-
 src/api/netdb.c                  |    8 +-
 src/api/netifapi.c               |   24 ++--
 src/api/pppapi.c                 |    2 +-
 src/api/sockets.c                |  137 ++++++++++----------
 src/api/tcpip.c                  |   20 +---
 src/core/dhcp.c                  |   66 +++++-----
 src/core/dns.c                   |   19 ++--
 src/core/inet_chksum.c           |   74 ++++++++++-
 src/core/init.c                  |    2 +
 src/core/ipv4/autoip.c           |   32 +++---
 src/core/ipv4/icmp.c             |   22 ++--
 src/core/ipv4/igmp.c             |  110 ++++++++--------
 src/core/ipv4/ip4.c              |  150 ++++++++++++---------
 src/core/ipv4/ip4_addr.c         |   64 +++++++--
 src/core/ipv4/ip_frag.c          |   15 ++-
 src/core/ipv6/dhcp6.c            |    4 +-
 src/core/ipv6/inet6.c            |    6 +-
 src/core/ipv6/ip6.c              |   18 ++-
 src/core/ipv6/ip6_addr.c         |   61 ++++++++-
 src/core/ipv6/mld6.c             |    2 +-
 src/core/ipv6/nd6.c              |   10 +-
 src/core/netif.c                 |   83 +++++++-----
 src/core/pbuf.c                  |    2 +-
 src/core/raw.c                   |   78 +++++++-----
 src/core/snmp/mib2.c             |   97 ++++++++------
 src/core/snmp/mib_structs.c      |    4 +-
 src/core/snmp/msg_out.c          |   20 ++--
 src/core/tcp.c                   |  124 +++++++++++-------
 src/core/tcp_in.c                |   59 +++++----
 src/core/tcp_out.c               |   56 ++++----
 src/core/timers.c                |    4 +
 src/core/udp.c                   |  250 +++++++++++++++++------------------
 src/include/lwip/api_msg.h       |    6 +-
 src/include/lwip/autoip.h        |    8 +-
 src/include/lwip/dhcp.h          |   18 ++--
 src/include/lwip/dns.h           |    8 +-
 src/include/lwip/icmp.h          |   14 +-
 src/include/lwip/igmp.h          |   14 +-
 src/include/lwip/inet.h          |   64 ++++++++-
 src/include/lwip/inet6.h         |   92 -------------
 src/include/lwip/inet_chksum.h   |   32 ++---
 src/include/lwip/ip.h            |  178 ++++++++++++++++---------
 src/include/lwip/ip4.h           |   41 +++---
 src/include/lwip/ip4_addr.h      |   73 +++++------
 src/include/lwip/ip6.h           |    4 +-
 src/include/lwip/ip6_addr.h      |    9 --
 src/include/lwip/ip_addr.h       |  271 +++++++++++++++++++++++++++-----------
 src/include/lwip/ip_frag.h       |    8 +-
 src/include/lwip/memp_std.h      |    8 +-
 src/include/lwip/netbuf.h        |   22 +---
 src/include/lwip/netif.h         |   52 +++++---
 src/include/lwip/netifapi.h      |   22 ++--
 src/include/lwip/opt.h           |   53 ++++++--
 src/include/lwip/pppapi.h        |    4 +-
 src/include/lwip/raw.h           |   35 +-----
 src/include/lwip/snmp.h          |    9 +-
 src/include/lwip/snmp_msg.h      |    2 +
 src/include/lwip/snmp_structs.h  |    4 +-
 src/include/lwip/sockets.h       |    1 -
 src/include/lwip/tcp.h           |   14 +-
 src/include/lwip/tcp_impl.h      |   36 +++---
 src/include/lwip/udp.h           |   54 +-------
 src/include/netif/etharp.h       |   60 ++++----
 src/include/netif/ppp/ppp.h      |    4 +-
 src/include/netif/ppp/pppol2tp.h |    4 +-
 src/netif/etharp.c               |  109 ++++++++--------
 src/netif/ppp/ppp.c              |   18 ++--
 src/netif/ppp/pppol2tp.c         |   64 +++-------
 src/netif/ppp/pppos.c            |    2 +
 src/netif/ppp/vj.c               |    8 +-
 74 files changed, 1712 insertions(+), 1398 deletions(-)
 delete mode 100644 src/include/lwip/inet6.h


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



reply via email to

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