You've already forked OpenIntegrations
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:
2
docs/en/examples/TCP/CloseConnection.txt
vendored
2
docs/en/examples/TCP/CloseConnection.txt
vendored
@@ -1,4 +1,4 @@
|
||||
Address = "45.79.112.203:4242";
|
||||
Address = FunctionParameters["TCP_Address"];
|
||||
Connection = OPI_TCP.CreateConnection(Address);
|
||||
|
||||
Result = OPI_TCP.CloseConnection(Connection);
|
||||
|
||||
2
docs/en/examples/TCP/CreateConnection.txt
vendored
2
docs/en/examples/TCP/CreateConnection.txt
vendored
@@ -1,4 +1,4 @@
|
||||
Address = "45.79.112.203:4242";
|
||||
Address = FunctionParameters["TCP_Address"];
|
||||
Connection = OPI_TCP.CreateConnection(Address);
|
||||
|
||||
OPI_TCP.CloseConnection(Connection);
|
||||
|
||||
2
docs/en/examples/TCP/GetLastError.txt
vendored
2
docs/en/examples/TCP/GetLastError.txt
vendored
@@ -1,4 +1,4 @@
|
||||
Address = "45.79.112.203:4242";
|
||||
Address = FunctionParameters["TCP_Address"];
|
||||
Connection = OPI_TCP.CreateConnection(Address);
|
||||
Data = "Hello server!" + Chars.LF;
|
||||
|
||||
|
||||
4
docs/en/examples/TCP/ProcessRequest.txt
vendored
4
docs/en/examples/TCP/ProcessRequest.txt
vendored
@@ -1,9 +1,9 @@
|
||||
Address = "45.79.112.203:4242";
|
||||
Address = FunctionParameters["TCP_Address"];
|
||||
Data = "Echo this!" + Chars.LF;
|
||||
|
||||
Result = OPI_TCP.ProcessRequest(Address, Data);
|
||||
|
||||
Address = "tcpbin.com:4243";
|
||||
Address = FunctionParameters["TCP_AddressTLS"];
|
||||
Tls = OPI_TCP.GetTLSSettings(True);
|
||||
|
||||
Result = OPI_TCP.ProcessRequest(Address, Data, , Tls);
|
||||
|
||||
2
docs/en/examples/TCP/ReadBinaryData.txt
vendored
2
docs/en/examples/TCP/ReadBinaryData.txt
vendored
@@ -1,4 +1,4 @@
|
||||
Address = "45.79.112.203:4242";
|
||||
Address = FunctionParameters["TCP_Address"];
|
||||
Connection = OPI_TCP.CreateConnection(Address);
|
||||
Message = "Hello server!" + Chars.LF;
|
||||
Data = GetBinaryDataFromString(Message);
|
||||
|
||||
2
docs/en/examples/TCP/ReadLine.txt
vendored
2
docs/en/examples/TCP/ReadLine.txt
vendored
@@ -1,4 +1,4 @@
|
||||
Address = "45.79.112.203:4242";
|
||||
Address = FunctionParameters["TCP_Address"];
|
||||
Connection = OPI_TCP.CreateConnection(Address);
|
||||
Data = "Hello server!" + Chars.LF;
|
||||
|
||||
|
||||
2
docs/en/examples/TCP/SendBinaryData.txt
vendored
2
docs/en/examples/TCP/SendBinaryData.txt
vendored
@@ -1,4 +1,4 @@
|
||||
Address = "45.79.112.203:4242";
|
||||
Address = FunctionParameters["TCP_Address"];
|
||||
Connection = OPI_TCP.CreateConnection(Address);
|
||||
Message = "Hello server!" + Chars.LF;
|
||||
Data = GetBinaryDataFromString(Message);
|
||||
|
||||
2
docs/en/examples/TCP/SendLine.txt
vendored
2
docs/en/examples/TCP/SendLine.txt
vendored
@@ -1,4 +1,4 @@
|
||||
Address = "45.79.112.203:4242";
|
||||
Address = FunctionParameters["TCP_Address"];
|
||||
Connection = OPI_TCP.CreateConnection(Address);
|
||||
Data = "Hello server!" + Chars.LF;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user