Skip to content

Instantly share code, notes, and snippets.

View Santinell's full-sized avatar

Pavel Evdokimov Santinell

View GitHub Profile
var dgram = require('dgram');
function getIP(data) {
var a = data.slice(0, 1).readUInt8();
var b = data.slice(1, 2).readUInt8();
var c = data.slice(2, 3).readUInt8();
var d = data.slice(3, 4).readUInt8();
return (a + "." + b + "." + c + "." + d);
}