poweroff-tool
Version:
This is application which power off a pc when it triggered
25 lines (24 loc) • 510 B
JavaScript
function SNMPSession() {
this.get = (oid, callback) => {
setTimeout(() => {
callback(null, [
{
oid: '1.3.6.1.4.1.4131.1.6.1.1.1.3.1',
type: 4,
value: Buffer.from('false')
}, {
oid: '1.3.6.1.4.1.4131.1.6.1.1.1.3.2',
type: 4,
value: Buffer.from('false')
}
]);
});
};
this.on = () => {};
};
module.exports = {
createSession: () => {
return new SNMPSession();
},
isVarbindError: () => false,
}