Hi,
Recently I upgraded my AutoIt and since then this script has caused problems.
Func MonitorOpenVPNTunnel ($UDPLogReceiver)
If $UDPLogReceiver[0] <> 0 Then
$received = UDPRecv($UDPLogReceiver,16000)
If @error And (@error <> 10040) Then
InternalErrorMsgBox("UDPRecv",@error)
Could any experienced user of UDP tell me if there is some change in the UDPRecv function that could explain an error coming up as soon as I run the compiled program.
This is the code that makes the $UDPLogReceiver
$UDPLogPort = Random(20000,65535,1)
$UDPLogReceiver = UDPBind("127.0.0.1",$UDPLogPort)
Could there be something new in UDPBind that would cause a problem?
Any fresh inspiration very welcome.
Blessings
Graeme