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

ldapjs

Package Overview
Dependencies
Maintainers
1
Versions
79
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ldapjs - npm Package Compare versions

Comparing version 0.3.3 to 0.3.4

6

lib/client.js

@@ -805,3 +805,3 @@ // Copyright 2011 Mark Cavage, Inc. All rights reserved.

c.ldap.connected = true;
c.ldap.id += ':' + c.fd;
c.ldap.id += c.fd ? (':' + c.fd) : '';
c.emit('connect', true);

@@ -823,3 +823,3 @@ });

c.ldap = {
id: connectOpts.socketPath || self.url.hostname,
id: self.url ? self.url.hostname : connectOpts.socketPath,
messageID: 0,

@@ -840,3 +840,3 @@ messages: {}

c.ldap.connected = true;
c.ldap.id += ':' + c.fd;
c.ldap.id += c.fd ? (':' + c.fd) : '';
self.emit('connect', c.ldap.id);

@@ -843,0 +843,0 @@ });

@@ -6,3 +6,3 @@ {

"description": "LDAP client and server APIs",
"version": "0.3.3",
"version": "0.3.4",
"repository": {

@@ -9,0 +9,0 @@ "type": "git",

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