lwip-commits
[Top][All Lists]
Advanced

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

[lwip-commits] [SCM] lwIP Contrib - Contributed code for Lightweight TCP


From: Dirk Ziegelmeier
Subject: [lwip-commits] [SCM] lwIP Contrib - Contributed code for Lightweight TCP/IP stack branch, master, updated. STABLE-2_0_0_RELEASE-253-gb4fda3e
Date: Sat, 17 Feb 2018 10:28:41 -0500 (EST)

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 Contrib - Contributed code for Lightweight TCP/IP stack".

The branch, master has been updated
       via  b4fda3eee0d3e96a437f4b684f993294e352307d (commit)
       via  3d3c8cacf583c120ea8892f88c4c5b59a4ded5be (commit)
       via  db9ff436a0c61a998f55a93bf1c08437fea0f387 (commit)
       via  b756f34286c895656dfd0b29c0a835acd291abce (commit)
       via  f05b8441aa37ed7465528f666f9a4d3b7422cd66 (commit)
       via  24e0b29c3795e212dadeffdf0337950bfbb6904d (commit)
       via  4d460f0061006e96a9dc08d7038752199f760177 (commit)
       via  fd3d2ff645c76bc217507d63b979f70e96c23013 (commit)
       via  59ebc4657f0fe9144175d820db79389cfefe17a9 (commit)
       via  ee8611de2d316f12e08d40edf280986ad0726dbf (commit)
      from  1695d58db0ef8a946d07fb20a2532bd90da7d0b4 (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 b4fda3eee0d3e96a437f4b684f993294e352307d
Author: Dirk Ziegelmeier <address@hidden>
Date:   Sat Feb 17 16:28:26 2018 +0100

    Remove unused code from simnode.c and simrouter.c, it is now contained in 
sntp_example.c

commit 3d3c8cacf583c120ea8892f88c4c5b59a4ded5be
Author: Dirk Ziegelmeier <address@hidden>
Date:   Sat Feb 17 16:25:10 2018 +0100

    Move SNMP code from UNIX simhost to separate files

commit db9ff436a0c61a998f55a93bf1c08437fea0f387
Author: Dirk Ziegelmeier <address@hidden>
Date:   Sat Feb 17 16:19:21 2018 +0100

    Minor cleanup in mqtt_example

commit b756f34286c895656dfd0b29c0a835acd291abce
Author: Dirk Ziegelmeier <address@hidden>
Date:   Sat Feb 17 16:17:43 2018 +0100

    Fix typo in tftp_example

commit f05b8441aa37ed7465528f666f9a4d3b7422cd66
Author: Dirk Ziegelmeier <address@hidden>
Date:   Sat Feb 17 16:17:26 2018 +0100

    Move MDNS code from UNIX simhost.c to separate files

commit 24e0b29c3795e212dadeffdf0337950bfbb6904d
Author: Dirk Ziegelmeier <address@hidden>
Date:   Sat Feb 17 16:08:18 2018 +0100

    Move SNTP code from UNIX simhost.c to separate files
    Forgot to move one function

commit 4d460f0061006e96a9dc08d7038752199f760177
Author: Dirk Ziegelmeier <address@hidden>
Date:   Sat Feb 17 16:06:20 2018 +0100

    Move SNTP code from UNIX simhost.c to separate files

commit fd3d2ff645c76bc217507d63b979f70e96c23013
Author: Dirk Ziegelmeier <address@hidden>
Date:   Sat Feb 17 15:59:49 2018 +0100

    Move app initialization code in simhost.c to one place

commit 59ebc4657f0fe9144175d820db79389cfefe17a9
Author: Dirk Ziegelmeier <address@hidden>
Date:   Sat Feb 17 15:52:43 2018 +0100

    Move TFTP example code from UNIX simhost to separate files

commit ee8611de2d316f12e08d40edf280986ad0726dbf
Author: Dirk Ziegelmeier <address@hidden>
Date:   Sat Feb 17 15:43:13 2018 +0100

    Move MQTT example code from UNIX simhost to separate files

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

Summary of changes:
 Filelists.mk                                       |   5 +
 .../lwip_hooks.h => examples/mdns/mdns_example.c   |  39 +--
 .../tcpecho_raw.h => examples/mdns/mdns_example.h  |  22 +-
 examples/mqtt/mqtt_example.c                       | 119 ++++++++++
 .../tcpecho_raw.h => examples/mqtt/mqtt_example.h  |  22 +-
 .../lwip_hooks.h => examples/snmp/snmp_example.c   |  53 +++--
 .../tcpecho_raw.h => examples/snmp/snmp_example.h  |  22 +-
 .../netif/delif.h => examples/sntp/sntp_example.c  |  39 ++-
 .../tcpecho_raw.h => examples/sntp/sntp_example.h  |  22 +-
 .../port/perf.c => examples/tftp/tftp_example.c    |  74 ++++--
 examples/tftp/tftp_example.h                       |  28 +++
 ports/unix/unixsim/simhost.c                       | 264 ++-------------------
 ports/unix/unixsim/simnode.c                       |  10 -
 ports/unix/unixsim/simrouter.c                     |  13 -
 14 files changed, 377 insertions(+), 355 deletions(-)
 copy ports/unix/unixsim/lwip_hooks.h => examples/mdns/mdns_example.c (69%)
 copy apps/tcpecho_raw/tcpecho_raw.h => examples/mdns/mdns_example.h (86%)
 create mode 100644 examples/mqtt/mqtt_example.c
 copy apps/tcpecho_raw/tcpecho_raw.h => examples/mqtt/mqtt_example.h (86%)
 copy ports/unix/unixsim/lwip_hooks.h => examples/snmp/snmp_example.c (58%)
 copy apps/tcpecho_raw/tcpecho_raw.h => examples/snmp/snmp_example.h (86%)
 copy ports/unix/port/include/netif/delif.h => examples/sntp/sntp_example.c 
(68%)
 copy apps/tcpecho_raw/tcpecho_raw.h => examples/sntp/sntp_example.h (86%)
 copy ports/unix/port/perf.c => examples/tftp/tftp_example.c (62%)
 create mode 100644 examples/tftp/tftp_example.h


hooks/post-receive
-- 
lwIP Contrib - Contributed code for Lightweight TCP/IP stack



reply via email to

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