Merge pull request #396 from hogofwar/capital

Capitalise constructor Oidentd
This commit is contained in:
Pavel Djundik 2016-06-12 09:43:02 +03:00 committed by GitHub
commit 643e07dead
2 changed files with 5 additions and 5 deletions

View file

@ -2,7 +2,7 @@ var _ = require("lodash");
var fs = require("fs");
var Client = require("./client");
var Helper = require("./helper");
var oidentd = require("./oidentd");
var Oidentd = require("./oidentd");
module.exports = ClientManager;
@ -12,7 +12,7 @@ function ClientManager() {
this.clients = [];
if (typeof config.oidentd === "string") {
this.identHandler = new oidentd(config.oidentd);
this.identHandler = new Oidentd(config.oidentd);
}
}

View file

@ -1,7 +1,7 @@
var fs = require("fs");
var Helper = require("./helper");
function oidentdFile(file) {
function OidentdFile(file) {
this.file = Helper.expandHome(file);
this.connectionId = 0;
this.connections = {};
@ -9,7 +9,7 @@ function oidentdFile(file) {
this.refresh();
}
oidentdFile.prototype = {
OidentdFile.prototype = {
hookSocket: function(socket, user) {
var that = this;
var id = null;
@ -70,4 +70,4 @@ oidentdFile.prototype = {
},
};
module.exports = oidentdFile;
module.exports = OidentdFile;