Make it possible to change the port number of the PacketServer

This commit is contained in:
zontreck 2024-06-03 15:19:28 -07:00
parent 043010aad3
commit 8d93157ac0
4 changed files with 10 additions and 8 deletions

View file

@ -8,7 +8,7 @@ void main() async {
reg.registerDefaults();
PacketClient client = PacketClient();
await client.startConnect("127.0.0.1");
await client.startConnect("127.0.0.1", 25306);
S2CResponse response = await client.send(C2SPing(), true);
CompoundTag tag = response.contents;

View file

@ -1,5 +1,5 @@
import 'package:libac_dart/packets/packets.dart';
void main() async {
await PacketServer.start();
await PacketServer.start(25306);
}