New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

serialipprotocol

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

serialipprotocol - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

4

CHANGELOG.md

@@ -0,3 +1,7 @@

Version: 0.1.1
------------
- Bug fixes
Version: 0.1.0
------------
- Initial commit

2

package.json
{
"name": "serialipprotocol",
"description": "Routine to read a CSV stream to make tags available to honcho application",
"version": "0.1.0",
"version": "0.1.1",
"author": {

@@ -6,0 +6,0 @@ "name": "Dana Moffit",

@@ -232,2 +232,12 @@ // NodeSerialIP - A library for communication to Siemens PLCs from node.js.

NodeSerialIP.prototype.writeItems = function(arg, value, cb) {
var self = this;
outputLog("Write called on SerialIP driver - write not supported", 0, self.connectionID);
if (typeof(cb) === 'function') {
process.nextTick(function() {
cb(true);
});
}
}
NodeSerialIP.prototype.onTCPConnect = function() {

@@ -474,3 +484,3 @@ var self = this, connBuf;

self.globalReadBlockList[i].value = self.globalReadBlockList[i].badValue();
self.globalReadBlockList[i].quality = 'BAD';
self.globalReadBlockList[i].quality = 'BAD 255';
}

@@ -477,0 +487,0 @@ }

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