http://bugs.winehq.org/show_bug.cgi?id=33798
Bruno Jesus 00cpxxx@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |00cpxxx@gmail.com
--- Comment #8 from Bruno Jesus 00cpxxx@gmail.com 2013-06-17 07:10:48 CDT --- (In reply to comment #7)
To be sure we are using the same thing. You should have replaced in the listener: this: local_sin.sin_addr.s_addr = htonl (INADDR_ANY); with: local_sin.sin_addr.s_addr = inet_addr(YOUR_INTERFACE_IP);
And in the sender: this: source_sin.sin_addr.s_addr = htonl (INADDR_ANY); with: source_sin.sin_addr.s_addr = inet_addr(YOUR_INTERFACE_IP);
I have changed only the receiver part, I'll change the sender too and test again.
I will make some test with the 3.10 and the wine 1.6-rc2 (I just tested it quickly on another pc) as soon as possible.
The kernel version is important because the attach to interface mechanism was implemented recently, read more at bug 7929.