Comparing version 0.2.10 to 0.2.11
/** | ||
* @license DHCP.js v0.2.10 28/06/2017 | ||
* @license DHCP.js v0.2.11 28/06/2017 | ||
* http://www.xarg.org/2017/06/a-pure-javascript-dhcp-implementation/ | ||
@@ -926,3 +926,3 @@ * | ||
module.exports = { | ||
exports.DHCP = exports.default = module.exports = { | ||
createServer: function(opt) { | ||
@@ -929,0 +929,0 @@ return new Server(opt); |
/** | ||
* @license DHCP.js v0.2.10 28/06/2017 | ||
* @license DHCP.js v0.2.11 28/06/2017 | ||
* http://www.xarg.org/2017/06/a-pure-javascript-dhcp-implementation/ | ||
@@ -4,0 +4,0 @@ * |
/** | ||
* @license DHCP.js v0.2.10 28/06/2017 | ||
* @license DHCP.js v0.2.11 28/06/2017 | ||
* http://www.xarg.org/2017/06/a-pure-javascript-dhcp-implementation/ | ||
@@ -19,3 +19,3 @@ * | ||
this._data = buf || new Buffer(len || 1500).fill(0); | ||
this._data = buf || new Buffer.alloc(len || 1500); // alloc() fills the buffer with '0' | ||
} | ||
@@ -22,0 +22,0 @@ |
{ | ||
"name": "dhcp", | ||
"title": "dhcp", | ||
"version": "0.2.10", | ||
"version": "0.2.11", | ||
"homepage": "https://github.com/infusion/node-dhcp", | ||
@@ -6,0 +6,0 @@ "bugs": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Mixed license
License(Experimental) Package contains multiple licenses.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
74762
17
1