Send to fails with 10022

Questions about Wine on Linux
Locked
poncho524
Newbie
Newbie
Posts: 2
Joined: Thu Jan 20, 2022 8:27 am

Send to fails with 10022

Post by poncho524 »

Im trying to run a fairly simple console application (maybe dotnet) that has to talk on some sockets.

It runs fine in windows, but in wine 8.7 it prints out that sending UDP is failing with code 10022.

I'm pretty sure it's just trying to sendto localhost, but I don't have the source.

Any tips on how to troubleshoot this?

Anyone know of why a call that works on windows would fail with 10022 on wine?
poncho524
Newbie
Newbie
Posts: 2
Joined: Thu Jan 20, 2022 8:27 am

Re: Send to fails with 10022

Post by poncho524 »

Where do the devs hangout?
invisible kid
Level 5
Level 5
Posts: 359
Joined: Tue Dec 24, 2019 3:23 pm

Re: Send to fails with 10022

Post by invisible kid »

Start it from the command line and save the logs. Paste or upload the entire log. Someone will probably get you fixed up in no time, or identify a bug. One way to save the logs(there are many) is:

Code: Select all

wine program.exe > ~/standard_out.txt 2> ~/error_out.txt
Then use the program as you normally would. When it crashes or you can go no further, exit normally or ctrl-c or kill.
You can take a peek at both files in your home directory. Upload either or both if they have info inside(one may not). Good luck!
Locked