Releases: stefanwerfling/node-rohc
Releases · stefanwerfling/node-rohc
v1.0.5
v1.0.4
Full Changelog: v1.0.3...v1.0.4
v1.0.3
Full Changelog: v1.0.2...v1.0.3
v1.0.2
Fix build, update readme.
Sample for use:
import {Tun} from 'tuntap2';
import {Rohc} from 'node-rohc';
const tun = new Tun();
const rohc = new Rohc();
tun.mtu = 1400;
tun.ipv4 = '4.3.2.1/24';
tun.on('data', (buf) => {
const cmpBuf = rohc.compress(new Uint8Array(buf));
const ippacket = IP.decodeIP(buf);
console.log(ippacket);
console.log(cmpBuf);
});v1.0.1
First alpha release! More info read the readme.
Full Changelog: https://github.com/stefanwerfling/node-rohc/commits/v1.0.1