Releases: quentinlampin/microschc
Releases · quentinlampin/microschc
No compression rule & match strategies
0.15.4 introduces the no-compression rule as well as 2 strategies for matching frames to rules : best
and first
.
best
strategy goes through all rules of a context and returns the one that shows the smaller residuefirst
strategy returns the first rule matching a frame, regardless of the compression performance.
v0.15.3
What's Changed
- [bugfix] variable length field match by @quentinlampin in #17
Full Changelog: 0.15.2...0.15.3
v0.15.2
What's Changed
- [Bugfix] CoAP zero-length option value by @quentinlampin in #16
Full Changelog: 0.15.1...0.15.2
v0.15.1 - no-compression rule implementation
What's Changed
- [bugfix] field_match now checks for field length for MSB matching by @quentinlampin in #15
Full Changelog: 0.15.0...0.15.1
v0.15.0 - no-compression rule implementation
What's Changed
- [feature] no-compression rule by @quentinlampin in #14
Full Changelog: 0.14.0...0.15.0
v0.14.0 - Rule matching strategies: FIRST and BEST match
This release implements two strategies for the ContextManager:
- FIRST match: the context manager uses the first matching rule of the rules set. This speeds up the execution time.
- BEST match: the context manager uses the best matching rule of the rules set. This favours compression performance over execution time.
What's Changed
- [feature] rule matching strategies by @quentinlampin in #13
Full Changelog: 0.13.0...0.14.0
SCHC compression/decompression with JSON import/export & Context management
This release includes:
- parsers for IPv4, IPv6, UDP and CoAP headers
- rule description and matching
- compression/decompression of packets
- context management
- import/export of rule descriptors in JSON
SCHC compression/decompression with JSON import/export
This release includes:
- parsers for IPv4, IPv6, UDP and CoAP headers
- rule description and matching
- compression/decompression of packets
- import/export of rule descriptors in JSON
0.9.0 - naming + some usability improvements
Buffer.bit_length changed to Buffer.length
SCHC compression/decompression
This release features both the compression and decompression routines for SCHC.