Arduino Ethernet Server

Hi,

I have a small issue with ethernet server. I'd like to make Arduino server listening on port and catch connected devices but the problem is thats devices don't send anything first. just connecting and waiting for "welcome message" from the serwer.
Unfortunately I con not use this command

EthernetClient client = server.available();

Do you have any idea how to get client instance/object without sanding any message from client.

Thanks

yes server.available() should return only a client from which has data waiting, otherwise you would get always the first client only.
you can use server.accept(). see the AdvancedChatServer example