Compare commits

..

No commits in common. "0b5c5e2938a6622e126a915acec4526adcdd1cbd" and "9469564736f5b07a413a672126eb03038f8a25bc" have entirely different histories.

3 changed files with 5 additions and 8 deletions

View File

@ -11,13 +11,12 @@ import varint from "./varint.js";
/**
* Ping a Minecraft Java server.
* @param {string} host The host of the Java server.
* @param {string} virtualHost The host sent in handshake.
* @param {number} [port=25565] The port of the Java server.
* @param {function} cb The callback function to handle the ping response.
* @param {number} [timeout=5000] The timeout duration in milliseconds.
* @param {number} [protocolVersion=-1] The protocol version of the Java client.
*/
function ping(host, virtualHost, port = 25565, cb, timeout = 5000, protocolVersion = -1) {
function ping(host, port = 25565, cb, timeout = 5000, protocolVersion = -1) {
const socket = net.createConnection({ host, port });
// Set manual timeout interval.
@ -57,8 +56,8 @@ function ping(host, virtualHost, port = 25565, cb, timeout = 5000, protocolVersi
const handshake = varint.concat([
varint.encodeInt(0),
varint.encodeInt(protocolVersion),
varint.encodeInt(virtualHost.length),
varint.encodeString(virtualHost),
varint.encodeInt(host.length),
varint.encodeString(host),
varint.encodeUShort(port),
varint.encodeInt(1),
]);
@ -132,12 +131,11 @@ function ping(host, virtualHost, port = 25565, cb, timeout = 5000, protocolVersi
export function pingJava(host, options = {}) {
if (!host) throw new Error("Host argument is not provided");
const { port = 25565, timeout = 5000, protocolVersion = -1, virtualHost = null } = options;
const { port = 25565, timeout = 5000, protocolVersion = -1 } = options;
return new Promise((resolve, reject) => {
ping(
host,
virtualHost || host,
port,
(res, err) => {
err ? reject(err) : resolve(res);

View File

@ -1,6 +1,6 @@
{
"name": "@minescope/mineping",
"version": "1.6.0",
"version": "1.5.0",
"description": "Ping both Minecraft Bedrock and Java servers.",
"main": "index.js",
"types": "types/index.d.ts",

1
types/lib/java.d.ts vendored
View File

@ -7,7 +7,6 @@ export type JavaPingOptions = {
port?: number | undefined;
timeout?: number | undefined;
protocolVersion?: number | undefined;
virtualHost?: string | undefined;
};
/**