Hi all
Is ist possible to wake up a host (on LAN) with TCP protocol instead of udp ? I wrote a tool to send a magic packet via broadcast and wonder if it's possible to send such a packet directly to a host (with static IP).
WOL question
The magic packets are sent to MAC addresses not IP addresses since a turned off computer doesn't have a Mac Address, so I don't think it's possible.
Visit www.sceneproject.org
Trond is absolutely right see here :
http://msdn.microsoft.com/library/en-us ... cket_2.asp
http://msdn.microsoft.com/library/en-us ... cket_2.asp
SOCK_STREAM = Provides sequenced, reliable, two-way, connection-based byte streams with an OOB data transmission mechanism. Uses TCP for the Internet address family.
SOCK_DGRAM = Supports datagrams, which are connectionless, unreliable buffers of a fixed (typically small) maximum length. Uses UDP for the Internet address family.


