You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-25 22:12:29 +02:00
Main build (Jenkins)
This commit is contained in:
7
docs/en/examples/RCON/CreateConnection.txt
vendored
Normal file
7
docs/en/examples/RCON/CreateConnection.txt
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
URL = "127.0.0.1:25565";
|
||||
Password = "Jg9F...";
|
||||
WriteTimeout = 20;
|
||||
ReadTimeout = 20;
|
||||
|
||||
ConnectionParams = OPI_RCON.FormConnectionParameters(URL, Password, ReadTimeout, WriteTimeout);
|
||||
Result = OPI_RCON.CreateConnection(ConnectionParams);
|
||||
10
docs/en/examples/RCON/ExecuteCommand.txt
vendored
Normal file
10
docs/en/examples/RCON/ExecuteCommand.txt
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
URL = "127.0.0.1:25565";
|
||||
Password = "Jg9F...";
|
||||
WriteTimeout = 20;
|
||||
ReadTimeout = 20;
|
||||
|
||||
ConnectionParams = OPI_RCON.FormConnectionParameters(URL, Password, ReadTimeout, WriteTimeout);
|
||||
Connection = OPI_RCON.CreateConnection(ConnectionParams);
|
||||
|
||||
Command = "list";
|
||||
Result = OPI_RCON.ExecuteCommand(Command, Connection);
|
||||
6
docs/en/examples/RCON/FormConnectionParameters.txt
vendored
Normal file
6
docs/en/examples/RCON/FormConnectionParameters.txt
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
URL = "127.0.0.1:25565";
|
||||
Password = "Jg9F...";
|
||||
WriteTimeout = 20;
|
||||
ReadTimeout = 20;
|
||||
|
||||
Result = OPI_RCON.FormConnectionParameters(URL, Password, ReadTimeout, WriteTimeout);
|
||||
Reference in New Issue
Block a user