-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.js
42 lines (36 loc) · 1.5 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/** @module otr */
/*
* Off-the-Record Messaging bindings for nodejs
* Copyright (C) 2013 Mokhtar Naamani,
*
* 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");