Hello everyone, this is my first post, I'm Web Developer and I'm developing a desktop app to get the list of all servers of Halo CE (with Electron JS), but I dont know how get that list, investigating I get this domains:
s1.master.hosthpc.com
s1.ms01.hosthpc.com
I think that they are the master server, and investigating more (with WireShark XD) I found a way to connect to that master server (s1.ms01.hosthpc.com) with Node JS
var net = require('net');
var net = require('net');
var client = new net.Socket();
client.connect(28910, '54.210.5.59', function() {
console.log('Connected');
//client.write(':V');
});
client.on('data', function(data) {
console.log('Received: ' + data);
client.destroy(); // kill client after server's response
});
client.on('close', function() {
console.log('Connection closed');
});
But I just recieve 'Connect' but no more, any list of nothing :'C
the goal is do this https://image.ibb.co/dnpTjo/servers.jpg (that is the halo online brownser servers) but outside the game, and doit for Halo CE,
can someone help me please?
