2025-03-16 21:02:16 +03:00
|
|
|
---
|
|
|
|
|
sidebar_position: 3
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
import Tabs from '@theme/Tabs';
|
|
|
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
|
|
|
|
|
|
# Form connection parameters
|
|
|
|
|
Forms a collection of connection parameters
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
`Function FormConnectionParameters(Val URL, Val Password, Val ReadTimeout = 30, Val WriteTimeout = 30) Export`
|
|
|
|
|
|
|
|
|
|
| Parameter | CLI option | Type | Required | Description |
|
|
|
|
|
|-|-|-|-|-|
|
|
|
|
|
| URL | --url | String | ✔ | Server URL |
|
|
|
|
|
| Password | --pass | String | ✔ | Password for connection |
|
|
|
|
|
| ReadTimeout | --rtout | Number | ✖ | Response timeout (in seconds) |
|
|
|
|
|
| WriteTimeout | --wtout | Number | ✖ | Request sending timeout (in seconds) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Returns: Structure Of KeyAndValue - Structure of connection parameters
|
|
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```bsl title="1C:Enterprise/OneScript code example"
|
|
|
|
|
URL = "127.0.0.1:25565";
|
|
|
|
|
Password = "Jg9F...";
|
|
|
|
|
WriteTimeout = 20;
|
|
|
|
|
ReadTimeout = 20;
|
|
|
|
|
|
|
|
|
|
Result = OPI_RCON.FormConnectionParameters(URL, Password, ReadTimeout, WriteTimeout);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
2025-03-18 11:35:12 +03:00
|
|
|
<Tabs>
|
|
|
|
|
|
|
|
|
|
<TabItem value="bash" label="Bash" default>
|
|
|
|
|
```bash
|
|
|
|
|
oint rcon FormConnectionParameters \
|
|
|
|
|
--url "127.0.0.1:25575" \
|
|
|
|
|
--pass "***" \
|
|
|
|
|
--wtout 20 \
|
|
|
|
|
--rtout 20
|
|
|
|
|
```
|
|
|
|
|
</TabItem>
|
|
|
|
|
|
|
|
|
|
<TabItem value="bat" label="CMD/Bat" default>
|
|
|
|
|
```batch
|
|
|
|
|
oint rcon FormConnectionParameters ^
|
|
|
|
|
--url "127.0.0.1:25575" ^
|
|
|
|
|
--pass "***" ^
|
|
|
|
|
--wtout 20 ^
|
|
|
|
|
--rtout 20
|
|
|
|
|
```
|
|
|
|
|
</TabItem>
|
|
|
|
|
</Tabs>
|
2025-03-16 21:02:16 +03:00
|
|
|
|
|
|
|
|
|
2025-03-18 10:00:47 +03:00
|
|
|
```json title="Result"
|
|
|
|
|
{
|
|
|
|
|
"url": "127.0.0.1:25565",
|
|
|
|
|
"password": "***",
|
|
|
|
|
"read_timeout": 20,
|
|
|
|
|
"write_timeout": 20
|
|
|
|
|
}
|
|
|
|
|
```
|