Skip to content

Releases: stefanwerfling/node-rohc

v1.0.5

30 Jul 07:11

Choose a tag to compare

  • Fix missing dist
  • clear lock file

v1.0.4

29 Jul 09:38

Choose a tag to compare

Full Changelog: v1.0.3...v1.0.4

v1.0.3

26 Jul 08:46

Choose a tag to compare

Full Changelog: v1.0.2...v1.0.3

v1.0.2

25 Jul 07:49

Choose a tag to compare

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

23 Jul 11:48

Choose a tag to compare

v1.0.1 Pre-release
Pre-release

First alpha release! More info read the readme.

Full Changelog: https://github.com/stefanwerfling/node-rohc/commits/v1.0.1