Displaying 5 results from an estimated 5 matches for "inaddr".
Did you mean:
naddr
2014 Feb 13
3
Libguestfs (1.22.6) driver/changes for mingw/win32
Hi,
I attached the changes I made to a vanilla libguestfs-1.22.6 in order to
make it work in mingw/win32.
Added is also the patch required to make QEMU compatible (add a command to
QMP that lists the supported devices (the regilat way you do it print it to
stderr, which is difficult to redirect in win32)).
This is done on behalf of Intel Corp.
Thanks,
Or (oberon in irc)
2012 Dec 21
0
File Attachments for previous bug report
...ret = 0;
out:
BN_CTX_free(bnctx);
- bzero(buf, len);
+ memset(buf, 0, len);
xfree(buf);
return ret;
}
-------------- next part --------------
--- canohost.c.orig 2012-12-19 17:13:41.958551344 -0800
+++ canohost.c 2012-12-19 17:14:05.773567216 -0800
@@ -199,7 +199,7 @@
memcpy(&inaddr, ((char *)&a6->sin6_addr) + 12, sizeof(inaddr));
port = a6->sin6_port;
- bzero(a4, sizeof(*a4));
+ memset(a4, 0, sizeof(*a4));
a4->sin_family = AF_INET;
*len = sizeof(*a4);
-------------- next part --------------
--- channels.c.orig 2012-12-19 17:14:18.911938266 -0800
+...
2012 Dec 20
4
Deprecated calls to bzero() and index() found in OpenSSH 6.1p1
...In file 'canohost.c', I've replaced the bzero() call with
the equivalent memset() call. The patch file is below in
(diff -u) format:
--- canohost.c.orig 2012-12-19 17:13:41.958551344 -0800
+++ canohost.c 2012-12-19 17:14:05.773567216 -0800
@@ -199,7 +199,7 @@
memcpy(&inaddr, ((char *)&a6->sin6_addr) + 12, sizeof(inaddr));
port = a6->sin6_port;
- bzero(a4, sizeof(*a4));
+ memset(a4, 0, sizeof(*a4));
a4->sin_family = AF_INET;
*len = sizeof(*a4);
In file 'channels.c', I've replaced the bzero() calls with
the...
2011 Dec 16
0
Wine release 1.3.35
...ebugProcess_Create() static.
cmd: Use FormatMessage() for better internationalization support.
include: Add a couple of missing include directives in dshow.h.
include: in6addr.h does not depend on winsock's u_xxx types.
include: Eliminate redundancy between winsock.h and inaddr.h.
iphlpapi: Remove a few redundant include directives.
include: Add the missing inaddr.h and in6addr.h include directives.
include: Add a missing wincrypt.h include directive to mprapi.h.
userenv: Add a missing include directive to userenv.h.
include: Protect mstcpip....
2010 Aug 20
0
Wine release 1.3.1
...e.
Detlef Riekenberg (10):
include: Add a closing bracket.
shdocvw: Do not trim the last character, when using the iexplore open menu.
gdi32: Always use a HANDLE for GDI_ReleaseObj.
shlwapi/tests: Run more language dependent tests only on English locales.
include: Add inaddr.h.
wineps: Use winspool.drv for job management.
qmgr/tests: Detect when the service is disabled.
ntdll: Implement RtlIpv4AddressToString / RtlIpv4AddressToStringEx.
ntdll/tests: Add tests for RtlIpv4AddressToString / RtlIpv4AddressToStringEx.
gdi32/enhmfdrv: Remove unn...