1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-12-01 22:29:52 +02:00
Files
OpenIntegrations/docs/en/examples/TCP/ProcessRequest.txt

10 lines
301 B
Plaintext
Raw Normal View History

2025-10-20 19:41:52 +03:00
 Address = FunctionParameters["TCP_Address"];
2025-09-07 15:42:18 +03:00
Data = "Echo this!" + Chars.LF;
2024-12-16 15:44:01 +03:00
Result = OPI_TCP.ProcessRequest(Address, Data);
2025-09-01 14:51:24 +03:00
2025-10-20 19:41:52 +03:00
Address = FunctionParameters["TCP_AddressTLS"];
2025-09-01 14:51:24 +03:00
Tls = OPI_TCP.GetTLSSettings(True);
Result = OPI_TCP.ProcessRequest(Address, Data, , Tls);