Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

del_response.js 484B

123456789101112131415161718192021222324
  1. // Copyright 2011 Mark Cavage, Inc. All rights reserved.
  2. var assert = require('assert-plus');
  3. var util = require('util');
  4. var LDAPResult = require('./result');
  5. var Protocol = require('../protocol');
  6. ///--- API
  7. function DeleteResponse(options) {
  8. options = options || {};
  9. assert.object(options);
  10. options.protocolOp = Protocol.LDAP_REP_DELETE;
  11. LDAPResult.call(this, options);
  12. }
  13. util.inherits(DeleteResponse, LDAPResult);
  14. ///--- Exports
  15. module.exports = DeleteResponse;