You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
277 B
17 lines
277 B
5 years ago
|
socket = l_SOCKET("0.0.0.0", 90); //creates a server socket
|
||
|
client = C_SOCKET("127.0.0.1", 90); // creates a client
|
||
|
socket.template = {
|
||
|
|
||
|
"HEADER-DATA" : varToSaveData : call responce;,
|
||
|
"SOMEOTHER-HEADER" : varToSaveData : call responce;
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
client.plan = {
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
}
|