Dim UDPSocket1 As UDPSocket
End Sub
Sub Service_Create
UDPSocket1.Initialize("UDP", 5000, 8192)
Dim server2 As ServerSocket
End Sub
Sub Service_Start (StartingIntent As Intent)
End Sub
Sub Service_Destroy
End Sub
Sub UDP_PacketArrived (Packet As UDPPacket)
Dim msgudp As String
msgudp=""
msgudp = BytesToString(Packet.data,0, 4,"UTF8")
CallSubDelayed2(Main, "receiveudp", Packet.data)
End Sub