2025-07-17 22:02:56 +03:00
---
sidebar_position: 3
description: Close connection and other functions to work with FTP in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, FTP]
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Close connection
Explicitly closes the passed connection
`Function CloseConnection(Val Connection) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Connection | - | Arbitrary | ✔ | AddIn object with open connection |
Returns: Structure Of KeyAndValue - Result of connection termination
<br/>
:::caution
**NOCLI:** this method is not available in CLI version
:::
<br/>
```bsl title="1C:Enterprise/OneScript code example"
2025-10-21 11:36:43 +03:00
Host = "172.33.0.10";
Port = "21";
Login = "bayselonarrend";
Password = "12we...";
2025-07-17 22:02:56 +03:00
2025-07-28 20:20:57 +03:00
UseProxy = True;
FTPS = True;
ProxySettings = Undefined;
TLSSettings = Undefined; // FTPS
2025-07-30 08:17:11 +03:00
FTPSettings = OPI_FTP.GetConnectionSettings(Host, Port, Login, Password);
2025-07-28 20:20:57 +03:00
If UseProxy Then
2025-10-21 11:36:43 +03:00
ProxyType = "http"; // http, socks5, socks4
2025-07-28 20:20:57 +03:00
2025-10-21 11:36:43 +03:00
ProxyAddress = "127.0.0.1";
ProxyPort = "8071";
ProxyLogin = "proxyuser";
ProxyPassword = "12we...";
2025-07-28 20:20:57 +03:00
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
EndIf;
If FTPS Then
2025-09-01 14:51:24 +03:00
TLSSettings = OPI_FTP.GetTLSSettings(True);
2025-07-28 20:20:57 +03:00
EndIf;
Connection = OPI_FTP.CreateConnection(FTPSettings, ProxySettings, TLSSettings);
2025-07-18 19:54:06 +03:00
Result = OPI_FTP.CloseConnection(Connection);
2025-07-17 22:02:56 +03:00
```
2025-09-12 20:23:31 +03:00
```json title="Result"
{
"result": true
}
```