otr4
Version:
OTR Messaging Protocol [native libotr4.x.x]
43 lines (36 loc) • 1.54 kB
JavaScript
/** @module otr */
/*
* Off-the-Record Messaging bindings for nodejs
* Copyright (C) 2013 Mokhtar Naamani,
* <mokhtar.naamani@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of version 2 of the GNU General Public License as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
//load node C++ native module
var libotr = require("./build/Release/otrnat");
// Add some methods to native objects
require("./lib/extend-native.js").extend(libotr);
if (libotr.version() != "4.1.0") {
console.error("Warning. You are not using the latest version of libotr on your system.");
}
/** @method
* @returns {String} libotr version information
*/
exports.version = libotr.version;
exports.User = require("./lib/User.js").User;
exports.Account = require("./lib/Account.js").Account;
exports.Session = require("./lib/Session.js").Session;
exports.Contact = require("./lib/Contact.js").Contact;
exports.POLICY = require("./lib/POLICY.js");
exports.MSGEVENT = require("./lib/MSGEVENT.js");