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. 84cd489d24d5db36307f71a1568f158ac57ea467
Date: Sat, 09 Jan 2016 11:39:59 +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  84cd489d24d5db36307f71a1568f158ac57ea467 (commit)
      from  708beb487492b69d7850bca41f992ca6e6ca5910 (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 84cd489d24d5db36307f71a1568f158ac57ea467
Author: Dirk Ziegelmeier <address@hidden>
Date:   Sat Jan 9 12:39:48 2016 +0100

    SNMP: Add MIB compiler (code generator)

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

Summary of changes:
 .../CCodeGeneration/CCodeGeneration.csproj         |   67 +++
 .../snmp/LwipMibCompiler/CCodeGeneration/CFile.cs} |   40 +-
 .../LwipMibCompiler/CCodeGeneration/CGenerator.cs  |  119 ++++
 .../snmp/LwipMibCompiler/CCodeGeneration/Code.cs}  |   40 +-
 .../CCodeGeneration/CodeContainerBase.cs           |  139 +++++
 .../CCodeGeneration/CodeElement.cs}                |   22 +-
 .../LwipMibCompiler/CCodeGeneration/Comment.cs}    |   73 ++--
 .../LwipMibCompiler/CCodeGeneration/EmptyLine.cs}  |   62 +--
 .../LwipMibCompiler/CCodeGeneration/Function.cs    |  129 +++++
 .../CCodeGeneration/FunctionDeclaration.cs         |  114 ++++
 .../LwipMibCompiler/CCodeGeneration/IfThenElse.cs  |  137 +++++
 .../snmp/LwipMibCompiler/CCodeGeneration/PP_If.cs} |   65 ++--
 .../LwipMibCompiler/CCodeGeneration/PP_Ifdef.cs}   |   74 ++--
 .../LwipMibCompiler/CCodeGeneration/PP_Include.cs} |   69 ++--
 .../LwipMibCompiler/CCodeGeneration/PP_Macro.cs}   |   57 +-
 .../LwipMibCompiler/CCodeGeneration/PlainText.cs}  |   37 +-
 .../CCodeGeneration/Properties/AssemblyInfo.cs     |   36 ++
 .../snmp/LwipMibCompiler/CCodeGeneration/Switch.cs |  146 +++++
 .../CCodeGeneration/VariableDeclaration.cs}        |   74 ++-
 .../CCodeGeneration/VariablePrototype.cs}          |   71 ++--
 .../CCodeGeneration/VariableType.cs                |  130 +++++
 src/apps/snmp/LwipMibCompiler/LwipMibCompiler.sln  |   47 ++
 .../LwipMibCompiler/LwipMibCompiler.csproj         |   71 +++
 .../LwipMibCompiler/LwipMibCompiler/Program.cs     |  470 ++++++++++++++++
 .../LwipMibCompiler/Properties/AssemblyInfo.cs     |   36 ++
 .../LwipMibCompiler/LwipMibCompiler/app.config     |    3 +
 .../LwipMibViewer/FormMain.Designer.cs             |  166 ++++++
 .../snmp/LwipMibCompiler/LwipMibViewer/FormMain.cs |  217 ++++++++
 .../LwipMibCompiler/LwipMibViewer/FormMain.resx    |  298 ++++++++++
 .../LwipMibViewer/LwipMibViewer.csproj             |   92 +++
 .../snmp/LwipMibCompiler/LwipMibViewer/Program.cs} |   41 +-
 .../LwipMibViewer/Properties/AssemblyInfo.cs       |   36 ++
 .../LwipMibViewer/Properties/Resources.Designer.cs |   63 +++
 .../LwipMibViewer/Properties/Resources.resx        |  117 ++++
 .../LwipMibViewer/Properties/Settings.Designer.cs  |   26 +
 .../LwipMibViewer/Properties/Settings.settings     |    7 +
 .../snmp/LwipMibCompiler/LwipMibViewer/app.config  |    3 +
 .../LwipSnmpCodeGeneration/IRestriction.cs         |  120 ++++
 .../LwipSnmpCodeGeneration/LwipSnmp.cs             |  199 +++++++
 .../LwipSnmpCodeGeneration.csproj                  |   72 +++
 .../LwipSnmpCodeGeneration/MibCFile.cs             |  196 +++++++
 .../LwipSnmpCodeGeneration/MibHeaderFile.cs        |  129 +++++
 .../Properties/AssemblyInfo.cs                     |   36 ++
 .../LwipSnmpCodeGeneration/SnmpMib.cs              |   97 ++++
 .../LwipSnmpCodeGeneration/SnmpNode.cs             |  119 ++++
 .../SnmpScalarAggregationNode.cs                   |  293 ++++++++++
 .../LwipSnmpCodeGeneration/SnmpScalarArrayNode.cs  |  105 ++++
 .../LwipSnmpCodeGeneration/SnmpScalarNode.cs       |  395 +++++++++++++
 .../LwipSnmpCodeGeneration/SnmpScalarNodeBits.cs   |  121 ++++
 .../SnmpScalarNodeCounter64.cs}                    |   66 ++--
 .../LwipSnmpCodeGeneration/SnmpScalarNodeInt.cs}   |   76 ++-
 .../SnmpScalarNodeObjectIdentifier.cs              |   90 +++
 .../SnmpScalarNodeOctetString.cs                   |  118 ++++
 .../SnmpScalarNodeTruthValue.cs}                   |   62 +--
 .../LwipSnmpCodeGeneration/SnmpScalarNodeUint.cs   |   91 +++
 .../LwipSnmpCodeGeneration/SnmpTableNode.cs        |  332 +++++++++++
 .../LwipSnmpCodeGeneration/SnmpTreeNode.cs         |  241 ++++++++
 .../SharpSnmpLib/Mib/DisplayHint.cs                |   84 +++
 .../Mib/Elements/Entities/AgentCapabilities.cs     |   29 +
 .../Mib/Elements/Entities/EntityBase.cs            |   46 ++
 .../SharpSnmpLib/Mib/Elements/Entities/IEntity.cs  |   62 ++
 .../Mib/Elements/Entities/ModuleCompliance.cs      |   23 +
 .../Mib/Elements/Entities/ModuleIdentity.cs        |   10 +
 .../Mib/Elements/Entities/NotificationGroup.cs     |   22 +
 .../Mib/Elements/Entities/NotificationType.cs      |   11 +
 .../Mib/Elements/Entities/ObjectGroup.cs           |   22 +
 .../Mib/Elements/Entities/ObjectIdentity.cs        |   21 +
 .../Mib/Elements/Entities/ObjectType.cs            |  336 +++++++++++
 .../Mib/Elements/Entities/OidValueAssignment.cs    |   30 +
 .../SharpSnmpLib/Mib/Elements/Exports.cs           |   56 ++
 .../SharpSnmpLib/Mib/Elements/IDeclaration.cs      |   18 +
 .../SharpSnmpLib/Mib/Elements/IElement.cs          |   35 ++
 .../SharpSnmpLib/Mib/Elements/ITypeReferrer.cs     |   10 +
 .../SharpSnmpLib/Mib/Elements/Imports.cs           |   81 +++
 .../SharpSnmpLib/Mib/Elements/ImportsFrom.cs       |   60 ++
 .../SharpSnmpLib/Mib/Elements/TrapType.cs          |   48 ++
 .../SharpSnmpLib/Mib/Elements/Types/BaseType.cs    |   54 ++
 .../SharpSnmpLib/Mib/Elements/Types/BitsType.cs    |   26 +
 .../SharpSnmpLib/Mib/Elements/Types/Choice.cs      |   35 ++
 .../Mib/Elements/Types/ITypeAssignment.cs          |    6 +
 .../SharpSnmpLib/Mib/Elements/Types/IntegerType.cs |  117 ++++
 .../Mib/Elements/Types/IpAddressType.cs            |   21 +
 .../SharpSnmpLib/Mib/Elements/Types/Macro.cs       |   34 ++
 .../Mib/Elements/Types/ObjectIdentifierType.cs     |   11 +
 .../Mib/Elements/Types/OctetStringType.cs          |   31 +
 .../SharpSnmpLib/Mib/Elements/Types/OpaqueType.cs  |   11 +
 .../SharpSnmpLib/Mib/Elements/Types/Sequence.cs    |   46 ++
 .../SharpSnmpLib/Mib/Elements/Types/SequenceOf.cs  |   23 +
 .../Mib/Elements/Types/TextualConvention.cs        |  238 ++++++++
 .../Mib/Elements/Types/TypeAssignment.cs           |  147 +++++
 .../Mib/Elements/Types/UnsignedType.cs             |  103 ++++
 .../LwipMibCompiler/SharpSnmpLib/Mib/IModule.cs    |   81 +++
 .../SharpSnmpLib/Mib/ISymbolEnumerator.cs          |    9 +
 .../snmp/LwipMibCompiler/SharpSnmpLib/Mib/Lexer.cs |  581 ++++++++++++++++++++
 .../LwipMibCompiler/SharpSnmpLib/Mib/MaxAccess.cs  |   17 +
 .../SharpSnmpLib/Mib/MibDocument.cs                |   57 ++
 .../SharpSnmpLib/Mib/MibException.cs               |  113 ++++
 .../LwipMibCompiler/SharpSnmpLib/Mib/MibModule.cs  |  294 ++++++++++
 .../SharpSnmpLib/Mib/MibResolver.cs                |   95 ++++
 .../LwipMibCompiler/SharpSnmpLib/Mib/MibTree.cs    |   84 +++
 .../SharpSnmpLib/Mib/MibTreeNode.cs                |  112 ++++
 .../SharpSnmpLib/Mib/MibTypesResolver.cs           |  216 ++++++++
 .../SharpSnmpLib/Mib/ObjectIdentifier.cs           |   54 ++
 .../LwipMibCompiler/SharpSnmpLib/Mib/Status.cs     |   17 +
 .../LwipMibCompiler/SharpSnmpLib/Mib/Symbol.cs     |  357 ++++++++++++
 .../LwipMibCompiler/SharpSnmpLib/Mib/SymbolList.cs |  146 +++++
 .../LwipMibCompiler/SharpSnmpLib/Mib/ValueMap.cs   |  103 ++++
 .../LwipMibCompiler/SharpSnmpLib/Mib/ValueRange.cs |   76 +++
 .../SharpSnmpLib/Properties/AssemblyInfo.cs        |   61 ++
 .../SharpSnmpLib/Properties/Resources.Designer.cs  |   63 +++
 .../SharpSnmpLib/Properties/Resources.resx         |  120 ++++
 .../SharpSnmpLib/SharpSnmpLib.Mib.csproj           |  139 +++++
 .../snmp/LwipMibCompiler/SharpSnmpLib/license.txt  |  458 +++++++++++++++
 .../LwipMibCompiler/SharpSnmpLib/sharpsnmplib.snk  |  Bin 0 -> 596 bytes
 src/apps/snmp/README                               |   36 +-
 115 files changed, 11100 insertions(+), 448 deletions(-)
 create mode 100644 
src/apps/snmp/LwipMibCompiler/CCodeGeneration/CCodeGeneration.csproj
 copy src/{core/ipv6/dhcp6.c => 
apps/snmp/LwipMibCompiler/CCodeGeneration/CFile.cs} (77%)
 create mode 100644 src/apps/snmp/LwipMibCompiler/CCodeGeneration/CGenerator.cs
 copy src/{core/ipv6/dhcp6.c => 
apps/snmp/LwipMibCompiler/CCodeGeneration/Code.cs} (75%)
 create mode 100644 
src/apps/snmp/LwipMibCompiler/CCodeGeneration/CodeContainerBase.cs
 copy src/{include/posix/sys/socket.h => 
apps/snmp/LwipMibCompiler/CCodeGeneration/CodeElement.cs} (83%)
 copy src/{core/sys.c => apps/snmp/LwipMibCompiler/CCodeGeneration/Comment.cs} 
(61%)
 copy src/{core/sys.c => 
apps/snmp/LwipMibCompiler/CCodeGeneration/EmptyLine.cs} (70%)
 create mode 100644 src/apps/snmp/LwipMibCompiler/CCodeGeneration/Function.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/CCodeGeneration/FunctionDeclaration.cs
 create mode 100644 src/apps/snmp/LwipMibCompiler/CCodeGeneration/IfThenElse.cs
 copy src/{core/sys.c => apps/snmp/LwipMibCompiler/CCodeGeneration/PP_If.cs} 
(69%)
 copy src/{core/sys.c => apps/snmp/LwipMibCompiler/CCodeGeneration/PP_Ifdef.cs} 
(64%)
 copy src/{core/sys.c => 
apps/snmp/LwipMibCompiler/CCodeGeneration/PP_Include.cs} (67%)
 copy src/{include/lwip/dhcp6.h => 
apps/snmp/LwipMibCompiler/CCodeGeneration/PP_Macro.cs} (69%)
 copy src/{core/ipv6/dhcp6.c => 
apps/snmp/LwipMibCompiler/CCodeGeneration/PlainText.cs} (77%)
 create mode 100644 
src/apps/snmp/LwipMibCompiler/CCodeGeneration/Properties/AssemblyInfo.cs
 create mode 100644 src/apps/snmp/LwipMibCompiler/CCodeGeneration/Switch.cs
 copy src/apps/snmp/{snmp_pbuf_stream.h => 
LwipMibCompiler/CCodeGeneration/VariableDeclaration.cs} (59%)
 copy src/{core/sys.c => 
apps/snmp/LwipMibCompiler/CCodeGeneration/VariablePrototype.cs} (66%)
 create mode 100644 
src/apps/snmp/LwipMibCompiler/CCodeGeneration/VariableType.cs
 create mode 100644 src/apps/snmp/LwipMibCompiler/LwipMibCompiler.sln
 create mode 100644 
src/apps/snmp/LwipMibCompiler/LwipMibCompiler/LwipMibCompiler.csproj
 create mode 100644 src/apps/snmp/LwipMibCompiler/LwipMibCompiler/Program.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/LwipMibCompiler/Properties/AssemblyInfo.cs
 create mode 100644 src/apps/snmp/LwipMibCompiler/LwipMibCompiler/app.config
 create mode 100644 
src/apps/snmp/LwipMibCompiler/LwipMibViewer/FormMain.Designer.cs
 create mode 100644 src/apps/snmp/LwipMibCompiler/LwipMibViewer/FormMain.cs
 create mode 100644 src/apps/snmp/LwipMibCompiler/LwipMibViewer/FormMain.resx
 create mode 100644 
src/apps/snmp/LwipMibCompiler/LwipMibViewer/LwipMibViewer.csproj
 copy src/{core/ipv6/dhcp6.c => 
apps/snmp/LwipMibCompiler/LwipMibViewer/Program.cs} (75%)
 create mode 100644 
src/apps/snmp/LwipMibCompiler/LwipMibViewer/Properties/AssemblyInfo.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/LwipMibViewer/Properties/Resources.Designer.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/LwipMibViewer/Properties/Resources.resx
 create mode 100644 
src/apps/snmp/LwipMibCompiler/LwipMibViewer/Properties/Settings.Designer.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/LwipMibViewer/Properties/Settings.settings
 create mode 100644 src/apps/snmp/LwipMibCompiler/LwipMibViewer/app.config
 create mode 100644 
src/apps/snmp/LwipMibCompiler/LwipSnmpCodeGeneration/IRestriction.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/LwipSnmpCodeGeneration/LwipSnmp.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/LwipSnmpCodeGeneration/LwipSnmpCodeGeneration.csproj
 create mode 100644 
src/apps/snmp/LwipMibCompiler/LwipSnmpCodeGeneration/MibCFile.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/LwipSnmpCodeGeneration/MibHeaderFile.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/LwipSnmpCodeGeneration/Properties/AssemblyInfo.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/LwipSnmpCodeGeneration/SnmpMib.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/LwipSnmpCodeGeneration/SnmpNode.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/LwipSnmpCodeGeneration/SnmpScalarAggregationNode.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/LwipSnmpCodeGeneration/SnmpScalarArrayNode.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/LwipSnmpCodeGeneration/SnmpScalarNode.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/LwipSnmpCodeGeneration/SnmpScalarNodeBits.cs
 copy src/apps/snmp/{snmp_pbuf_stream.h => 
LwipMibCompiler/LwipSnmpCodeGeneration/SnmpScalarNodeCounter64.cs} (58%)
 copy src/apps/snmp/{snmp_pbuf_stream.h => 
LwipMibCompiler/LwipSnmpCodeGeneration/SnmpScalarNodeInt.cs} (51%)
 create mode 100644 
src/apps/snmp/LwipMibCompiler/LwipSnmpCodeGeneration/SnmpScalarNodeObjectIdentifier.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/LwipSnmpCodeGeneration/SnmpScalarNodeOctetString.cs
 copy src/apps/snmp/{snmp_pbuf_stream.h => 
LwipMibCompiler/LwipSnmpCodeGeneration/SnmpScalarNodeTruthValue.cs} (54%)
 create mode 100644 
src/apps/snmp/LwipMibCompiler/LwipSnmpCodeGeneration/SnmpScalarNodeUint.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/LwipSnmpCodeGeneration/SnmpTableNode.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/LwipSnmpCodeGeneration/SnmpTreeNode.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/DisplayHint.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/Entities/AgentCapabilities.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/Entities/EntityBase.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/Entities/IEntity.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/Entities/ModuleCompliance.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/Entities/ModuleIdentity.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/Entities/NotificationGroup.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/Entities/NotificationType.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/Entities/ObjectGroup.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/Entities/ObjectIdentity.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/Entities/ObjectType.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/Entities/OidValueAssignment.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/Exports.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/IDeclaration.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/IElement.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/ITypeReferrer.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/Imports.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/ImportsFrom.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/TrapType.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/Types/BaseType.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/Types/BitsType.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/Types/Choice.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/Types/ITypeAssignment.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/Types/IntegerType.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/Types/IpAddressType.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/Types/Macro.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/Types/ObjectIdentifierType.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/Types/OctetStringType.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/Types/OpaqueType.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/Types/Sequence.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/Types/SequenceOf.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/Types/TextualConvention.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/Types/TypeAssignment.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Elements/Types/UnsignedType.cs
 create mode 100644 src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/IModule.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/ISymbolEnumerator.cs
 create mode 100644 src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Lexer.cs
 create mode 100644 src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/MaxAccess.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/MibDocument.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/MibException.cs
 create mode 100644 src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/MibModule.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/MibResolver.cs
 create mode 100644 src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/MibTree.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/MibTreeNode.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/MibTypesResolver.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/ObjectIdentifier.cs
 create mode 100644 src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Status.cs
 create mode 100644 src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/Symbol.cs
 create mode 100644 src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/SymbolList.cs
 create mode 100644 src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/ValueMap.cs
 create mode 100644 src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Mib/ValueRange.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Properties/AssemblyInfo.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Properties/Resources.Designer.cs
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/Properties/Resources.resx
 create mode 100644 
src/apps/snmp/LwipMibCompiler/SharpSnmpLib/SharpSnmpLib.Mib.csproj
 create mode 100644 src/apps/snmp/LwipMibCompiler/SharpSnmpLib/license.txt
 create mode 100644 src/apps/snmp/LwipMibCompiler/SharpSnmpLib/sharpsnmplib.snk


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



reply via email to

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