it still doesn't work

This commit is contained in:
Keegan 2016-03-06 17:23:05 -05:00
commit 783664863e
8 changed files with 303 additions and 5 deletions

42
src/createClient.js Normal file
View file

@ -0,0 +1,42 @@
'use strict';
var net = require('net');
var dns = require('dns');
var Client = require('./client');
var assert = require('assert');
module.exports = createClient;
Client.prototype.connect = function(port, host) {
var self = this;
if(port == 19132 && net.isIP(host) === 0) {
dns.resolveSrv(host, function(err, addresses) {
if(addresses && addresses.length > 0) {
self.setSocket(net.connect(addresses[0].port, addresses[0].name));
} else {
self.setSocket(net.connect(port, host));
}
});
} else {
self.setSocket(net.connect(port, host));
}
};
function createClient(options) {
assert.ok(options, "options is required");
var port = options.port || 19132;
var host = options.host || 'localhost';
assert.ok(options.username, "username is required");
var client = new Client(false);
client.on('connect', onConnect);
client.username = options.username;
client.connect(port, host);
function onConnect() {
// we should probably implement the login protocol for the client here
}
return client;
}