node-ldapjs/lib/messages/add_response.js

25 lines
510 B
JavaScript
Raw Normal View History

2011-08-04 20:32:01 +00:00
// Copyright 2011 Mark Cavage, Inc. All rights reserved.
var util = require('util');
var LDAPResult = require('./result');
var Protocol = require('../protocol');
2011-11-15 18:49:23 +00:00
2011-08-04 20:32:01 +00:00
///--- API
function AddResponse(options) {
if (options) {
if (typeof (options) !== 'object')
2011-08-04 20:32:01 +00:00
throw new TypeError('options must be an object');
} else {
options = {};
}
options.protocolOp = Protocol.LDAP_REP_ADD;
LDAPResult.call(this, options);
}
util.inherits(AddResponse, LDAPResult);
module.exports = AddResponse;