1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-29 22:27:42 +02:00

Main build (Jenkins)

This commit is contained in:
Vitaly the Alpaca (bot)
2025-01-21 21:15:29 +03:00
parent a786c35cd1
commit 52536bff1c
20 changed files with 6454 additions and 6316 deletions

View File

@@ -0,0 +1,16 @@
 TCPServer = OPI_TCP.CreateServer(7788, True);
For N = 1 To 5 Do
NewConnection = OPI_TCP.AwaitingConnection(TCPServer, 20);
If NewConnection["result"] Then
Connection = NewConnection["connection"];
Else
Continue;
EndIf;
Response = OPI_TCP.SendData(TCPServer, Connection, ПолучитьДвоичныеДанныеИзСтроки("Yo"));
Closing = OPI_TCP.CloseIncomingConnection(TCPServer, Connection);
EndDo;