38 lines
793 B
JavaScript
38 lines
793 B
JavaScript
// Copyright 2011 Mark Cavage, Inc. All rights reserved.
|
|
|
|
var util = require('util');
|
|
|
|
var LDAPResult = require('./result');
|
|
var Protocol = require('../protocol');
|
|
|
|
|
|
|
|
///--- API
|
|
|
|
function CompareResponse(options) {
|
|
if (options) {
|
|
if (typeof (options) !== 'object')
|
|
throw new TypeError('options must be an object');
|
|
} else {
|
|
options = {};
|
|
}
|
|
|
|
options.protocolOp = Protocol.LDAP_REP_COMPARE;
|
|
LDAPResult.call(this, options);
|
|
}
|
|
util.inherits(CompareResponse, LDAPResult);
|
|
module.exports = CompareResponse;
|
|
|
|
|
|
CompareResponse.prototype.end = function (matches) {
|
|
var status = 0x06;
|
|
if (typeof (matches) === 'boolean') {
|
|
if (!matches)
|
|
status = 0x05; // Compare false
|
|
} else {
|
|
status = matches;
|
|
}
|
|
|
|
return LDAPResult.prototype.end.call(this, status);
|
|
};
|