-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
40 lines (35 loc) · 1.46 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
/** @module otr */
/*
* Off-the-Record Messaging bindings for node/javascript
* Copyright (C) 2012 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
*/
var libotr = require("./lib/bindings");
if (libotr.version() !== "4.1.1-emscripten") {
console.error("Error. excpecting libotr4.1.1-emscripten! exiting..");
throw ("Invalid libotr version returned");
}
/** @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");
exports.Buffer = require("buffer").Buffer;