Jump to content

UDP Server Sending Back to Client


Recommended Posts

Any idea why this isn't working? It used to work how I wanted it to on AutoIt v3.2.0.0. The client program should send messages to the server and receive back acknowledgments. It appears that in the current version (3.3.0.0), the server sends to itself with this code.

Any clues?

Note: You have to change the IPs to reflect your computer addresses.

Server:

UDPStartup()

$socket = UDPBind("192.168.1.114", 20000)
If @error <> 0 Then Exit

While 1
    $data = UDPRecv($socket,500)
    If $data <> "" Then
        MsgBox(0, "UDP DATA", $data,1)
        $recv_socket = UDPOpen($socket[2], 20000)
        If @error <> 0 Then Exit
        $status = UDPSend($recv_socket, "Ack")
        UDPCloseSocket($recv_socket)
    EndIf
    sleep(50)
WEnd

Func OnAutoItExit()
    UDPCloseSocket($socket)
    UDPShutdown()
EndFunc

-Livewire

Link to comment
Share on other sites

You need

UDPStartup()

$socket = UDPBind("192.168.1.114", 20000)
If @error <> 0 Then Exit

While 1
    $data = UDPRecv($socket,500)
    If $data <> "" Then
        MsgBox(0, "UDP DATA", $data,1)
        $recv_socket = UDPOpen("192.168.1.111", 20000);<---------------not $socket[2] which is the IP for the server
        If @error <> 0 Then Exit
        $status = UDPSend($recv_socket, "Ack")
        UDPCloseSocket($recv_socket)
    EndIf
    sleep(50)
WEnd

Func OnAutoItExit()
    UDPCloseSocket($socket)
    UDPShutdown()
EndFunc
Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script.
Link to comment
Share on other sites

I would like the code to automatically figure out where the server is (what IP it is). UDPRecv (called in the server) used to obtain the client's IP in the third index of the returned array.

The point of this example is: If you have a server running and an arbitrary client sends data to it, how do you send data back to that client?

Note: The exact code that I posted used to work as I mentioned in v3.2.0.0. Was the functionality changed for any good reason? Or is it a bug?

-Malachi

Edited by livewire
Link to comment
Share on other sites

I would like the code to automatically figure out where the server is (what IP it is). UDPRecv (called in the server) used to obtain the client's IP in the third index of the returned array.

The point of this example is: If you have a server running and an arbitrary client sends data to it, how do you send data back to that client?

Note: The exact code that I posted used to work as I mentioned in v3.2.0.0. Was the functionality changed for any good reason? Or is it a bug?

-Malachi

A UDP packet is sent with the IP of the sender and the IP of the receiver as well as the data but I don't know how to get those IP address's using AutoIt. Unless someone knows differently it seems like an omission in the UDP functions. I'd be surprised if you are correct about it being available in earlier versions of AutoIt; according to the change log no such alteration was made as far as I can see. Are you able to check your script with 3.2.0.0?

The easiest way is for the sender to include its IP as part of the data.

Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script.
Link to comment
Share on other sites

Yes, I have tried the code with AutoIt v3.2.0.0. It used to work and now it doesn't with the current version of AutoIt.

You can try it with an old version and see:

http://www.autoitscript.com/autoit3/files/archive/autoit/

-Malachi

I tried it and you are correct.

When data is received $socket[2] is set to the IP of the sender. When there is no data it is set to "0.0.0.0". That is very much more useful than the current verion of UDPRecv and possibly it was changed in error. Unfortunately it was not documented as a feature as far as I can see so it might not be considered to be a bug. There might have been a reason that it was changed that we don't know about but I would vote for it as a desirable feature. Since the sender's IP is sent with the data packet I think that it is sensible that we should have access to it.

EDIT: I created a feature request for this (ticket #867)

Edited by martin
Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script.
Link to comment
Share on other sites

  • 2 weeks later...

Looks like the feature request was denied.

Anyone know why this functionality was removed? It used to function how I mentioned. I don't know which version removed this functionality, but you can test it by running the code in my first post using AutoIt v3.2.0.0.

This is an old post where I explained to someone how it worked:

http://www.autoitscript.com/forum/index.ph...6432&hl=udp

-Livewire

Link to comment
Share on other sites

I don't know if it is the answer but some change occur in array management in 3.2.12.1.

Can you check with 3.2.12.0 version if it was working?

I cannot rerun your script with 192.168.1.11x address in my environment.

3.2.0.0 was deliver in August 2006 I assume you are not refering to a so long regression ...

Thanks for the help.

Link to comment
Share on other sites

I don't know if it is the answer but some change occur in array management in 3.2.12.1.

Can you check with 3.2.12.0 version if it was working?

I cannot rerun your script with 192.168.1.11x address in my environment.

3.2.0.0 was deliver in August 2006 I assume you are not refering to a so long regression ...

Thanks for the help.

Unless liverwire does it first I'll try it tonight.

Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script.
Link to comment
Share on other sites

Thanks again for the help :D

I checked the script with version 3.2.12.0 and with 3.2.12.1

$data = _UDPRecv($recv_soket,500)
ConsoleWrite($recv_socket[2]  & @CRLF);<--- gets set to the IP of the sender with both 3.2.12.0 and 3.2.12.1

I sent data from a PC which had V3.3.0.0 and on that PC

$data = UDPRecv($socket,500)
 ConsoleWrite($socket[2] & @CRLF);<---------3.3.0.0 never shows the sender's IP.(Not like 3.2.12.0 and 3.2.12.1)
Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script.
Link to comment
Share on other sites

I checked the script with version 3.2.12.0 and with 3.2.12.1

$data = _UDPRecv($recv_soket,500)
ConsoleWrite($recv_socket[2]  & @CRLF);<--- gets set to the IP of the sender with both 3.2.12.0 and 3.2.12.1

I sent data from a PC which had V3.3.0.0 and on that PC

$data = UDPRecv($socket,500)
 ConsoleWrite($socket[2] & @CRLF);<---------3.3.0.0 never shows the sender's IP.(Not like 3.2.12.0 and 3.2.12.1)
Thanks

Certainly some modification after 3.2.12.1.

Anyway my concern now is : is port recv is of some usage when using this recv IP?

Link to comment
Share on other sites

Thanks

Certainly some modification after 3.2.12.1.

Anyway my concern now is : is port recv is of some usage when using this recv IP?

I think so because to reply to the sender which could be one of several senders from the same ip, you need to know the sender's port.

Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script.
Link to comment
Share on other sites

I think so because to reply to the sender which could be one of several senders from the same ip, you need to know the sender's port.

so as Autoit never update parameter pass to builtin function we need to defined a new way of return them with the data.

We will define a Flag 2 with will return and array[0]= data array[1]=ip array[2]=port as suggested by Valik

:D

Link to comment
Share on other sites

so as Autoit never update parameter pass to builtin function we need to defined a new way of return them with the data.

We will define a Flag 2 with will return and array[0]= data array[1]=ip array[2]=port as suggested by Valik

:o

Sounds good :D

Thanks jpm and Valik.

Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script.
Link to comment
Share on other sites

I still have a problem as the return port does not correspond to the one used in UDPSend(). I don't know who is right ...

When you UDPSend the data gets to the correct port and is received so the send port must be handled correctly. Maybe you are reading the source port incorrectly when you receive? Perhaps because the port is an unsigned short integer?

Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script.
Link to comment
Share on other sites

When you UDPSend the data gets to the correct port and is received so the send port must be handled correctly. Maybe you are reading the source port incorrectly when you receive? Perhaps because the port is an unsigned short integer?

The values are return by :

inet_ntoa(remote.sin_addr);

ntohs(remote.sin_port);

The port received is not the one use in the UDPSend. So ???

Link to comment
Share on other sites

The values are return by :

inet_ntoa(remote.sin_addr);

ntohs(remote.sin_port);

The port received is not the one use in the UDPSend. So ???

Is it possible that the port number is being read correctly but the port number is not correctly entered in the header by _UDPSend?

Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script.
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...