Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nodertc/is-dtls
Check if a Buffer is a DTLS message.
https://github.com/nodertc/is-dtls
dtls js node nodertc webrtc
Last synced: about 2 months ago
JSON representation
Check if a Buffer is a DTLS message.
- Host: GitHub
- URL: https://github.com/nodertc/is-dtls
- Owner: nodertc
- License: mit
- Created: 2017-07-12T09:10:09.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-13T20:14:01.000Z (almost 7 years ago)
- Last Synced: 2024-10-13T21:36:09.559Z (3 months ago)
- Topics: dtls, js, node, nodertc, webrtc
- Language: JavaScript
- Size: 7.81 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# is-dtls
[![Build Status](https://travis-ci.org/nodertc/is-dtls.svg?branch=master)](https://travis-ci.org/nodertc/is-dtls)
[![npm](https://img.shields.io/npm/v/is-dtls.svg)](https://npmjs.org/package/is-dtls)
[![node](https://img.shields.io/node/v/is-dtls.svg)](https://npmjs.org/package/is-dtls)
[![license](https://img.shields.io/npm/l/is-dtls.svg)](https://npmjs.org/package/is-dtls)
[![downloads](https://img.shields.io/npm/dm/is-dtls.svg)](https://npmjs.org/package/is-dtls)Check if a Buffer is a [DTLS](https://tools.ietf.org/html/rfc4347) message. Used for demultiplex packets that are arriving on the same port. Follows [RFC7983](https://tools.ietf.org/html/rfc7983#section-7).
## Usage
```js
const dgram = require('dgram')
const is_dtls = require('is-dtls')const socket = dgram.createSocket('udp4')
socket.on('message', (packet) => {
if (is_dtls(packet)) {
// handle DTLS...
}
})socket.bind(0)
```## Related projects
* [`is-stun`](https://github.com/nodertc/is-stun) - Check if a Buffer is a [STUN](https://tools.ietf.org/html/rfc5389) message.
* [`is-turn`](https://github.com/nodertc/is-turn) - Check if a Buffer is a [TURN](https://tools.ietf.org/html/rfc5766) message.
* [`is-rtp`](https://github.com/nodertc/is-rtp) - Check if a Buffer is a [RTP/RTCP](https://tools.ietf.org/html/rfc3550) message.## License
MIT, 2017 (c) Dmitry Tsvettsikh