Skip to content
This repository has been archived by the owner on Aug 25, 2024. It is now read-only.

How to receive data from Udp #1

Open
Krishan93 opened this issue Jun 14, 2019 · 0 comments
Open

How to receive data from Udp #1

Krishan93 opened this issue Jun 14, 2019 · 0 comments

Comments

@Krishan93
Copy link

How to receive data from the network through the UDP protocol. Particular port number 58000. could you help me

function ReceivedFromNetwork (idBinding, nPort, strData)
print("ReceivedFromNetwork",idBinding,nPort,strData)

g_Receivebuffer = g_Receivebuffer .. strData

end

function OnNetworkBindingChanged (idBinding, bIsBound)
if (idBinding == 6001) then
NetworkBound = bIsBound
end
if (NetworkBound == true) then

--  C4:CreateNetworkConnection (6001,"255.255.255.255")

C4:NetConnect (6001,58000,'UDP')
end
print (bIsBound)
end

function OnConnectionStatusChanged (idBinding, nPort, strStatus)
print("OnConnectionStatusChanged ",strStatus)

    if (idBinding == 6001) then
    if (strStatus == "ONLINE") then
        NetworkConnected = true
     elseif (strStatus == "OFFLINE") then
        NetworkConnected = false
   end

end
print (strStatus)

end

function go ()

   C4:SendToNetwork (6001,58000,"1_0001_7_80207920180186_1_1")

end

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant