Fixed memory allocation and demo sketches compile - #6
Open
syntax1269 wants to merge 1 commit into
Open
Conversation
## Features * Full SNMPv2c Data Type support: * INTEGER `int` * STRING `char[]` / `const char*` (C-style strings, no `std::string` or Arduino `String`) * NULLTYPE * OIDTYPE `const char*` (dotted-decimal, e.g. ".1.3.6.1.4.1.5.0") * Complex data type support: * NETWORK ADDRESS * COUNTER32 `uint32_t` * GAUGE32 `uint32_t` * TIMESTAMP `uint32_t` * OPAQUE `uint8_t*` * COUNTER64 `uint64_t` * SNMP PDU Support * GetRequest * GetNextRequest * GetResponse (For SNMPv2c INFORM Responses only for now) * SetRequest * SNMPv2 Trap * GetBulkRequest * InformRequest * Deterministic memory (v3.2.0+) * Compile-time derived pool sizing — the arena scales with the handlers you register * Boot-time lock-in — one contiguous arena claimed before `setup()`/WiFi; zero per-packet heap traffic * Loud failure modes — over-cap GetBulk answers an RFC 3416 `tooBig` error PDU instead of silently truncating * Hardware-validated: ESP-01 30-minute soak campaigns, 0 pool alarms / 0 reboots / flat heap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Features
intchar[]/const char*(C-style strings, nostd::stringor ArduinoString)const char*(dotted-decimal, e.g. ".1.3.6.1.4.1.5.0")uint32_tuint32_tuint32_tuint8_t*uint64_tsetup()/WiFi; zero per-packet heap traffictooBigerror PDU instead of silently truncating