search for: makeword

Displaying 6 results from an estimated 6 matches for "makeword".

Did you mean: makeworld
2011 Feb 08
2
WSAStartup failure
...supported on Vista? The docs say Win2k or later. Or is there another issue? require ''windows/wsa'' require ''windows/error'' require ''windows/system_info'' include Windows::WSA include Windows::Error include Windows::SystemInfo begin version = MAKEWORD(2,2) buffer = 0.chr * 532 err = WSAStartup(version, buffer) if err != 0 puts "Oops: " + get_last_error(err) end ensure WSACleanup() end
2008 May 08
0
[ANNOUNCE] xtrans 1.2
...ong other things, this release fixes the linux abstract socket support which was broken in 1.1 (bug#15677). Also various bug fixes and win32 updates. Alan Coopersmith (1): Sun bug #6688467: _X11TransConvertAddress: Unknown family type on 64-bit SPARC Alan Hourihane (2): fix build for MAKEWORD disable UNIXCONN on MINGW Colin Harrison (2): Only call WSAGetLastError() if there has been an Update to winsock2 James Cloos (1): Fix length calculation for the path for abstract unix domain sockets Julien Cristau (2): BSD44SOCKETS is the wrong check for SOCK_MAXAD...
2013 Apr 04
0
Changing HTTP proxy configurations at run time
...=================================================================== --- src/modules/internet/nanohttp.c (revision 62488) +++ src/modules/internet/nanohttp.c (working copy) @@ -255,15 +255,12 @@ WSADATA wsaData; #endif - if (initialized) - return; - #ifdef _WINSOCKAPI_ if (WSAStartup(MAKEWORD(1, 1), &wsaData) != 0) return; #endif - if (proxy == NULL) { + proxy = NULL; proxyPort = 80; env = getenv("no_proxy"); if (env && ((env[0] == '*') && (env[1] == 0))) @@ -287,7 +284,7 @@ #endif proxyUser = xmlMemStrdup(env); } - } +...
2019 Jan 14
6
[PATCH nbdkit incomplete 0/5] Port to Windows.
This is an incomplete port to Windows. Currently the server compiles and starts up successfully, but goes into an infinite loop when you connect to it. Nevertheless I think the approach is ready for feedback. This being Windows the changes go quite deep. Rich.
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