Displaying 5 results from an estimated 5 matches for "wsaeintr".
2003 Sep 09
0
pullin' out my hair because i can't connect to a samba server
...bleshoot your DNS
configuration.
An error occurred when DNS was queried for the
service location (SRV) resource record used to
locate a domain controller for domain SOL.
The error was: "A blocking operation was
interrupted by a call to
WSACancelBlockingCall."
(error code 0x00002714 WSAEINTR)
The query was for the SRV record for
_ldap._tcp.dc._msdcs.SOL
For more information, click Help.
__________________________________
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com
2020 Aug 17
3
[nbdkit] Windows errno handling
.../previous-versions/visualstudio/visual-studio-6.0/aa270058(v=vs.60))
- To get and set the thread-local error from the last function
we must call WSAGetLastError and WSASetLastError.
- Error codes are integers with superficial similarity to errno codes
but different symbols and values (eg. WSAEINTR == 10004 is similar
to EINTR).
- I'm not sure if this is just a mingw thing or a Windows thing, but
mingw defines an <errno.h> header which has its own values for
errno like EINTR, and for some reason perror(3) cannot print many
of those values. Still looking into this one...
2020 Aug 17
0
Re: [nbdkit] Windows errno handling
...o/visual-studio-6.0/aa270058(v=vs.60))
>
> - To get and set the thread-local error from the last function
> we must call WSAGetLastError and WSASetLastError.
>
> - Error codes are integers with superficial similarity to errno codes
> but different symbols and values (eg. WSAEINTR == 10004 is similar
> to EINTR).
>
> - I'm not sure if this is just a mingw thing or a Windows thing, but
> mingw defines an <errno.h> header which has its own values for
> errno like EINTR, and for some reason perror(3) cannot print many
> of those values....
2020 Aug 18
15
[PATCH nbdkit 0/9] Port to Windows.
Also available here:
https://github.com/rwmjones/nbdkit/tree/2020-windows-mingw
This is the port to Windows using native Windows APIs (not MSYS or
Cygwin).
This patch series is at the point where it basically now works. I can
run the server with the memory plugin, and access it remotely using
guestfish, creating filesystems and so on without any apparent
problems.
Nevertheless there are many
2020 Aug 20
15
[PATCH nbdkit 0/13] Port to Windows without using a separate library.
Also available here:
https://github.com/rwmjones/nbdkit/tree/2020-windows-mingw-nolib
After a lot of work I have made the port to Windows work without using
a separate library. Instead, on Windows only, we build an "import
library" (library of stubs) which resolves references to nbdkit_*
functions in the main program and fixes up the plugin, basically the
first technique outlined in