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: Dirk Ziegelmeier
Subject: [lwip-commits] [SCM] lwIP - A Lightweight TCPIP stack branch, master, updated. 76d25befb4eff01c0af9a45c9176667b009a5ec9
Date: Thu, 21 Apr 2016 20:29:13 +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  76d25befb4eff01c0af9a45c9176667b009a5ec9 (commit)
       via  749f7fae1ad92dc5b05c1e159717ad24d8782524 (commit)
      from  61d07f88f0b3fcf526c3ce2dae590015387e913d (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 76d25befb4eff01c0af9a45c9176667b009a5ec9
Author: Dirk Ziegelmeier <address@hidden>
Date:   Thu Apr 21 22:28:14 2016 +0200

    Work on task #13907 PPP cleanups: Move PPP options from opt.h to dedicated 
ppp_opts.h file

commit 749f7fae1ad92dc5b05c1e159717ad24d8782524
Author: Dirk Ziegelmeier <address@hidden>
Date:   Thu Apr 21 21:47:26 2016 +0200

    Move PPP API files to netif/ppp subdir

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

Summary of changes:
 src/Filelists.mk                         |    2 +-
 src/include/lwip/opt.h                   |  513 ----------------------------
 src/include/netif/ppp/ccp.h              |    2 +-
 src/include/netif/ppp/chap-md5.h         |    2 +-
 src/include/netif/ppp/chap-new.h         |    2 +-
 src/include/netif/ppp/chap_ms.h          |    2 +-
 src/include/netif/ppp/eap.h              |    2 +-
 src/include/netif/ppp/ecp.h              |    2 +-
 src/include/netif/ppp/eui64.h            |    2 +-
 src/include/netif/ppp/fsm.h              |    2 +-
 src/include/netif/ppp/ipcp.h             |    2 +-
 src/include/netif/ppp/ipv6cp.h           |    2 +-
 src/include/netif/ppp/lcp.h              |    2 +-
 src/include/netif/ppp/magic.h            |    2 +-
 src/include/netif/ppp/mppe.h             |    2 +-
 src/include/netif/ppp/polarssl/arc4.h    |    2 +-
 src/include/netif/ppp/polarssl/des.h     |    2 +-
 src/include/netif/ppp/polarssl/md4.h     |    2 +-
 src/include/netif/ppp/polarssl/md5.h     |    2 +-
 src/include/netif/ppp/polarssl/sha1.h    |    2 +-
 src/include/netif/ppp/ppp.h              |    2 +-
 src/include/netif/ppp/ppp_impl.h         |    2 +-
 src/include/netif/ppp/ppp_opts.h         |  540 ++++++++++++++++++++++++++++++
 src/include/{lwip => netif/ppp}/pppapi.h |    2 +-
 src/include/netif/ppp/pppcrypt.h         |    2 +-
 src/include/netif/ppp/pppdebug.h         |    2 +-
 src/include/netif/ppp/pppoe.h            |    2 +-
 src/include/netif/ppp/pppol2tp.h         |    2 +-
 src/include/netif/ppp/pppos.h            |    2 +-
 src/include/netif/ppp/upap.h             |    2 +-
 src/include/netif/ppp/vj.h               |    2 +-
 src/netif/ppp/auth.c                     |    2 +-
 src/netif/ppp/ccp.c                      |    2 +-
 src/netif/ppp/chap-md5.c                 |    2 +-
 src/netif/ppp/chap-new.c                 |    2 +-
 src/netif/ppp/chap_ms.c                  |    2 +-
 src/netif/ppp/demand.c                   |    2 +-
 src/netif/ppp/eap.c                      |    2 +-
 src/netif/ppp/ecp.c                      |    2 +-
 src/netif/ppp/eui64.c                    |    2 +-
 src/netif/ppp/fsm.c                      |    2 +-
 src/netif/ppp/ipcp.c                     |    2 +-
 src/netif/ppp/ipv6cp.c                   |    2 +-
 src/netif/ppp/lcp.c                      |    2 +-
 src/netif/ppp/magic.c                    |    2 +-
 src/netif/ppp/mppe.c                     |    2 +-
 src/netif/ppp/multilink.c                |    2 +-
 src/netif/ppp/polarssl/arc4.c            |    2 +-
 src/netif/ppp/polarssl/des.c             |    2 +-
 src/netif/ppp/polarssl/md4.c             |    2 +-
 src/netif/ppp/polarssl/md5.c             |    2 +-
 src/netif/ppp/polarssl/sha1.c            |    2 +-
 src/netif/ppp/ppp.c                      |    2 +-
 src/{api => netif/ppp}/pppapi.c          |    4 +-
 src/netif/ppp/pppcrypt.c                 |    2 +-
 src/netif/ppp/pppoe.c                    |    2 +-
 src/netif/ppp/pppol2tp.c                 |    2 +-
 src/netif/ppp/pppos.c                    |    2 +-
 src/netif/ppp/upap.c                     |    2 +-
 src/netif/ppp/utils.c                    |    2 +-
 src/netif/ppp/vj.c                       |    2 +-
 61 files changed, 600 insertions(+), 573 deletions(-)
 create mode 100644 src/include/netif/ppp/ppp_opts.h
 rename src/include/{lwip => netif/ppp}/pppapi.h (99%)
 rename src/{api => netif/ppp}/pppapi.c (99%)


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



reply via email to

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