mirror of
https://github.com/tribufu/node-gamedig
synced 2026-05-18 09:35:50 +00:00
Add support for FiveM closes #55
This commit is contained in:
parent
c30339d866
commit
4c18b6a3fd
6 changed files with 55 additions and 28 deletions
|
|
@ -1,5 +1,6 @@
|
|||
const dgram = require('dgram'),
|
||||
TypeResolver = require('./typeresolver');
|
||||
TypeResolver = require('./typeresolver'),
|
||||
HexUtil = require('./HexUtil');
|
||||
|
||||
const activeQueries = [];
|
||||
|
||||
|
|
@ -7,7 +8,10 @@ const udpSocket = dgram.createSocket('udp4');
|
|||
udpSocket.unref();
|
||||
udpSocket.bind(21943);
|
||||
udpSocket.on('message', (buffer, rinfo) => {
|
||||
if(Gamedig.debug) console.log(rinfo.address+':'+rinfo.port+" <--UDP "+buffer.toString('hex'));
|
||||
if(Gamedig.debug) {
|
||||
console.log(rinfo.address+':'+rinfo.port+" <--UDP");
|
||||
console.log(HexUtil.debugDump(buffer));
|
||||
}
|
||||
for(const query of activeQueries) {
|
||||
if(
|
||||
query.options.address !== rinfo.address
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue