search for: ip_recvdstaddr

Displaying 2 results from an estimated 2 matches for "ip_recvdstaddr".

2012 Jun 11
1
tftp-hpa bug on aliased interface and recent kernels.
...ge to get to be correct would be: diff --git a/tftpd/recvfrom.c b/tftpd/recvfrom.c index d050b80..fe233da 100644 --- a/tftpd/recvfrom.c +++ b/tftpd/recvfrom.c @@ -149,16 +149,16 @@ myrecvfrom(int s, void *buf, int len, unsigned int flags, /* Try to enable getting the return address */ #ifdef IP_RECVDSTADDR - if (from->sa_family == AF_INET) + if (from->sa_family == AF_INET || from->sa_family == AF_UNSPEC) setsockopt(s, IPPROTO_IP, IP_RECVDSTADDR, &on, sizeof(on)); #endif #ifdef IP_PKTINFO - if (from->sa_family == AF_INET) + if (from->sa_family == AF_INET || fr...
2019 Aug 02
0
Wine release 4.13
...ests: Run test_set_fullscreen() on d3d12 as well. dbghelp: Return NULL instead of IMAGE_NO_MAP when PE file mapping fails. Damjan Jovanovic (3): ws2_32: WSARecvMsg allows a NULL control buffer when no control messages arrive. ws2_32: Implement IP_PKTINFO on *BSDs, which only have IP_RECVDSTADDR instead. ws2_32: Avoid data corruption of WSAPROTOCOL_INFO in ws_protocol_info(). François Gouget (1): xaudio2: Fix the optional FAudio functions check. Gabriel Ivăncescu (1): ntdll: Define AT_NO_AUTOMOUNT if needed. Gerald Pfeifer (1): windowscodecs: Move from_sRGB_compo...