[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[lwip-commits] [SCM] lwIP - A Lightweight TCPIP stack branch, master, up
From: |
Sylvain Rochet |
Subject: |
[lwip-commits] [SCM] lwIP - A Lightweight TCPIP stack branch, master, updated. 71b213df639c6f431603a7e9f0490cb2ab6c2a0f |
Date: |
Sat, 28 Feb 2015 19:57:21 +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 71b213df639c6f431603a7e9f0490cb2ab6c2a0f (commit)
via 7f3913ff58ceb9e54d9ea6238c9ce08a77ff8681 (commit)
via d884034c9f905c8fe066316113d0f2bbb047f025 (commit)
via bec199c4a2ca7e9e998438a21ffdd56c59171baa (commit)
via 3686110ed2aa9be761052d55b8e76c218a523ad2 (commit)
via 708e421ec3742972bdd8aebb9ed7ea05bcec5a91 (commit)
via 5ae7ee5276f5ab4dcc02ffac4977616c14983b84 (commit)
via 65493b421a4cc1053f5eb61d004fac83b4e0ae5a (commit)
via 301511a840a44c904d1bc82c6b5b20e954a13381 (commit)
via e86a0a43250a867b18f07f11b35cb2ffbc1d0f31 (commit)
via 8d05279599bb68c4b61e15632f6fd2035b8b93bc (commit)
via 587e0e3e0cf77b42a04cf49141ccf8814ce8b7b4 (commit)
via 2315f32ca0f6cf16691580f3f121ceb54c9805a7 (commit)
from 5a715093536a47f55a3c1486a4c990c0d1232966 (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 71b213df639c6f431603a7e9f0490cb2ab6c2a0f
Author: Sylvain Rochet <address@hidden>
Date: Sat Feb 28 20:37:41 2015 +0100
PPP, EAP: using MAXNAMELEN define instead of hardcoded 256 size for
rhostname
commit 7f3913ff58ceb9e54d9ea6238c9ce08a77ff8681
Author: Sylvain Rochet <address@hidden>
Date: Sat Feb 28 20:29:40 2015 +0100
PPP, EAP: removed malloc() and free()
Replaced pcb->eap.es_{client,server}.ea_peer pointer to a char table,
replaced strdup() with MEMCPY, etc.
commit d884034c9f905c8fe066316113d0f2bbb047f025
Author: Sylvain Rochet <address@hidden>
Date: Sat Feb 28 19:50:25 2015 +0100
PPP, replaced drand48() with magic_pow()
commit bec199c4a2ca7e9e998438a21ffdd56c59171baa
Author: Sylvain Rochet <address@hidden>
Date: Sat Feb 28 19:36:03 2015 +0100
PPP, MAGIC: new function: magic_pow
magic_pow() returns a new random number between 0 and (2^pow)-1 included.
commit 3686110ed2aa9be761052d55b8e76c218a523ad2
Author: Sylvain Rochet <address@hidden>
Date: Sat Feb 28 18:28:07 2015 +0100
PPP, SERVER: statically define our name for authentication purposes
We don't need that in RAM nor a pointer to a string, a static
define is fine for embedded devices, saved ~257 bytes of RAM.
commit 708e421ec3742972bdd8aebb9ed7ea05bcec5a91
Author: Sylvain Rochet <address@hidden>
Date: Sat Feb 28 18:08:37 2015 +0100
PPP, CORE: code cleaning
commit 5ae7ee5276f5ab4dcc02ffac4977616c14983b84
Author: Sylvain Rochet <address@hidden>
Date: Sat Feb 28 17:40:07 2015 +0100
PPP, SERVER: added CHAP authentication support
commit 65493b421a4cc1053f5eb61d004fac83b4e0ae5a
Author: Sylvain Rochet <address@hidden>
Date: Sat Feb 28 15:36:35 2015 +0100
PPP, SERVER, CHAP: fixed wrong pointer used on chap_timeout()
commit 301511a840a44c904d1bc82c6b5b20e954a13381
Author: Sylvain Rochet <address@hidden>
Date: Sat Feb 28 14:40:09 2015 +0100
PPP, SERVER: added PAP authentication support
New ppp auth function: auth_check_passwd() which check the user name and
passwd against configuration.
PAP: check remote user and password
commit e86a0a43250a867b18f07f11b35cb2ffbc1d0f31
Author: Sylvain Rochet <address@hidden>
Date: Sat Feb 28 13:08:20 2015 +0100
PPP, CORE, SERVER, set auth configuration before auth
Set LCP wanted options accordingly to the user auth configuration
if peer is required to authenticate itself.
commit 8d05279599bb68c4b61e15632f6fd2035b8b93bc
Author: Sylvain Rochet <address@hidden>
Date: Sat Feb 28 12:59:29 2015 +0100
PPP, CORE, moved auth configuration from auth_reset() to lcp_resetci()
Prepare for PPP_SERVER support, we need to move auth configuration before
lcp_allowoptions is copied into lcp_gotoptions. Restore unused
auth_reset() function using pppd original source code.
commit 587e0e3e0cf77b42a04cf49141ccf8814ce8b7b4
Author: Sylvain Rochet <address@hidden>
Date: Fri Feb 27 23:55:18 2015 +0100
PPP, CORE, beautified ppp_set_auth()
Beautified, added PPPAUTHTYPE_MSCHAP_V2 choice support.
commit 2315f32ca0f6cf16691580f3f121ceb54c9805a7
Author: Sylvain Rochet <address@hidden>
Date: Fri Feb 27 23:12:03 2015 +0100
PPP, CORE, cleaned struct ppp_settings coding style
-----------------------------------------------------------------------
Summary of changes:
src/include/lwip/opt.h | 9 ++-
src/include/netif/ppp/chap-new.h | 2 +-
src/include/netif/ppp/eap.h | 5 +-
src/include/netif/ppp/magic.h | 5 +
src/include/netif/ppp/ppp.h | 64 ++++++++--------
src/include/netif/ppp/ppp_impl.h | 3 +-
src/netif/ppp/auth.c | 153 ++++++++++++--------------------------
src/netif/ppp/chap-md5.c | 6 +-
src/netif/ppp/chap-new.c | 26 ++++---
src/netif/ppp/chap_ms.c | 2 +-
src/netif/ppp/eap.c | 75 ++++++++-----------
src/netif/ppp/lcp.c | 93 ++++++++++++++++++++++-
src/netif/ppp/magic.c | 7 ++
src/netif/ppp/ppp.c | 44 ++---------
src/netif/ppp/upap.c | 18 ++---
15 files changed, 258 insertions(+), 254 deletions(-)
hooks/post-receive
--
lwIP - A Lightweight TCPIP stack
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [lwip-commits] [SCM] lwIP - A Lightweight TCPIP stack branch, master, updated. 71b213df639c6f431603a7e9f0490cb2ab6c2a0f,
Sylvain Rochet <=