Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

dhcp

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dhcp - npm Package Compare versions

Comparing version 0.2.11 to 0.2.12

7

lib/dhcp.js
/**
* @license DHCP.js v0.2.11 28/06/2017
* @license DHCP.js v0.2.12 28/06/2017
* http://www.xarg.org/2017/06/a-pure-javascript-dhcp-implementation/

@@ -245,3 +245,6 @@ *

var static = this.config('static');
if (static[clientMAC]) {
if(typeof static === "function"){
var staticResult = static(clientMac);
if(staticResult) return staticResult;
}else if (static[clientMAC]) {
return static[clientMAC];

@@ -248,0 +251,0 @@ }

/**
* @license DHCP.js v0.2.11 28/06/2017
* @license DHCP.js v0.2.12 28/06/2017
* http://www.xarg.org/2017/06/a-pure-javascript-dhcp-implementation/

@@ -4,0 +4,0 @@ *

/**
* @license DHCP.js v0.2.11 28/06/2017
* @license DHCP.js v0.2.12 28/06/2017
* http://www.xarg.org/2017/06/a-pure-javascript-dhcp-implementation/

@@ -4,0 +4,0 @@ *

{
"name": "dhcp",
"title": "dhcp",
"version": "0.2.11",
"version": "0.2.12",
"homepage": "https://github.com/infusion/node-dhcp",

@@ -6,0 +6,0 @@ "bugs": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc