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. master_at_STABLE-2_0_0-382-g4ef21e2
Date: Wed, 1 Mar 2017 14:39:48 -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 - A Lightweight TCPIP stack".

The branch, master has been updated
       via  4ef21e25975a6544a0ed534f7034b1a27cec0b39 (commit)
       via  78cdbff1b3c89a276a9e730a22ed9a61c16d17ea (commit)
       via  576a8228c2264e73cf1bda93a9c4bfe3c89c571e (commit)
       via  fef7ce3c0d8631071e326c591df4549a622ff99a (commit)
       via  f0605a510ffa8181c9bc4424318ba87b78dc25a4 (commit)
       via  3b8bb580e46bde0b2a4fd7c92a6a9d77158cd675 (commit)
       via  4b97f2bb8e6cc209234896d0e0edd845748c5902 (commit)
       via  46df850cb9a30305cc04e9f4c7d56cd3000c3c36 (commit)
       via  f8f3cc039acc1fd1273d4b1e1a8b3c9f2d35bf23 (commit)
       via  f092d09121e14fe8d7f863a02df842b177cb07bb (commit)
       via  78806001e52bdd080887af167aea58d18b38cbfa (commit)
       via  8fd09d460843c12810f84a5a3ca94f3e5e1f0da3 (commit)
       via  ec044e826ed821b007dd892a982f2032af0ae710 (commit)
      from  a9bfe7b72f0fc8d028772c18a2388cb573c3d79f (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 4ef21e25975a6544a0ed534f7034b1a27cec0b39
Author: Dirk Ziegelmeier <address@hidden>
Date:   Wed Mar 1 20:23:55 2017 +0100

    Fix compile when SNMPv3 is disabled

commit 78cdbff1b3c89a276a9e730a22ed9a61c16d17ea
Author: Dirk Ziegelmeier <address@hidden>
Date:   Wed Mar 1 20:17:22 2017 +0100

    Several compile fixes for Marco's patch

commit 576a8228c2264e73cf1bda93a9c4bfe3c89c571e
Author: Dirk Ziegelmeier <address@hidden>
Date:   Wed Mar 1 20:00:15 2017 +0100

    Add new files to Filelists.ml

commit fef7ce3c0d8631071e326c591df4549a622ff99a
Author: Dirk Ziegelmeier <address@hidden>
Date:   Wed Mar 1 20:00:00 2017 +0100

    Some whitespace fixes to Marco's patches

commit f0605a510ffa8181c9bc4424318ba87b78dc25a4
Author: Marco <address@hidden>
Date:   Wed Mar 1 16:57:03 2017 +0100

    Modified the snmpv3_dummy implementation to be more functional.
    
    The dummy implementation also implements the user table as a reference.

commit 3b8bb580e46bde0b2a4fd7c92a6a9d77158cd675
Author: Marco <address@hidden>
Date:   Wed Mar 1 16:55:03 2017 +0100

    Add framework MIB and USM mib if SNMPv3 is enabled.

commit 4b97f2bb8e6cc209234896d0e0edd845748c5902
Author: Marco <address@hidden>
Date:   Wed Mar 1 16:54:18 2017 +0100

    Implemented usm mib.

commit 46df850cb9a30305cc04e9f4c7d56cd3000c3c36
Author: Marco <address@hidden>
Date:   Wed Mar 1 16:53:24 2017 +0100

    Implemented framework mib.

commit f8f3cc039acc1fd1273d4b1e1a8b3c9f2d35bf23
Author: Marco <address@hidden>
Date:   Wed Mar 1 16:18:51 2017 +0100

    Start a timer for enginetime handling.
    
    This timer function should be implemented in the snmpv3_xxx.c file.

commit f092d09121e14fe8d7f863a02df842b177cb07bb
Author: Marco <address@hidden>
Date:   Wed Mar 1 16:13:45 2017 +0100

    Added handling invalid packets in SNMPv3.

commit 78806001e52bdd080887af167aea58d18b38cbfa
Author: Marco <address@hidden>
Date:   Wed Mar 1 15:39:44 2017 +0100

    Made accepted SNMP version runtime configurable.
    
    This feature can be disabled by setting LWIP_SNMP_CONFIGURE_VERSIONS to 0.

commit 8fd09d460843c12810f84a5a3ca94f3e5e1f0da3
Author: Marco <address@hidden>
Date:   Wed Mar 1 15:32:43 2017 +0100

    Added missing context specific tags.

commit ec044e826ed821b007dd892a982f2032af0ae710
Author: Marco <address@hidden>
Date:   Wed Mar 1 15:19:25 2017 +0100

    Replaced old LWIP_SNMPV3_GET_ENGINE_BOOTS macro.
    
    Replaced old LWIP_SNMPV3_GET_ENGINE_BOOTS macro with the new 
snmpv3_get_engine_boots_internal function.

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

Summary of changes:
 src/Filelists.mk                              |   2 +
 src/apps/snmp/snmp_asn1.h                     |   5 +-
 src/apps/snmp/snmp_core.c                     |   9 +-
 src/apps/snmp/snmp_core_priv.h                |   7 +
 src/apps/snmp/snmp_msg.c                      | 370 +++++++++++++++++++---
 src/apps/snmp/snmp_msg.h                      |   5 +
 src/apps/snmp/snmp_netconn.c                  |   5 +
 src/apps/snmp/snmp_snmpv2_framework.c         |  88 ++++++
 src/apps/snmp/snmp_snmpv2_usm.c               | 421 ++++++++++++++++++++++++++
 src/apps/snmp/snmpv3.c                        |   6 +-
 src/apps/snmp/snmpv3_dummy.c                  | 267 ++++++++++++++--
 src/apps/snmp/snmpv3_priv.h                   |  10 +-
 src/include/lwip/apps/snmp.h                  |   7 +
 src/include/lwip/apps/snmp_core.h             |   6 +
 src/include/lwip/apps/snmp_opts.h             |  10 +-
 src/include/lwip/apps/snmp_snmpv2_framework.h |  32 ++
 src/include/lwip/apps/snmp_snmpv2_usm.h       |  24 ++
 src/include/lwip/apps/snmpv3.h                |  14 +
 18 files changed, 1211 insertions(+), 77 deletions(-)
 create mode 100644 src/apps/snmp/snmp_snmpv2_framework.c
 create mode 100644 src/apps/snmp/snmp_snmpv2_usm.c
 create mode 100644 src/include/lwip/apps/snmp_snmpv2_framework.h
 create mode 100644 src/include/lwip/apps/snmp_snmpv2_usm.h


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



reply via email to

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