Commit 7986d4e2 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

ws2_32: Move the getsockopt(IP_TTL) implementation to ntdll.

parent b605fca9
......@@ -1790,6 +1790,9 @@ NTSTATUS sock_ioctl( HANDLE handle, HANDLE event, PIO_APC_ROUTINE apc, void *apc
case IOCTL_AFD_WINE_SET_IP_TOS:
return do_setsockopt( handle, io, IPPROTO_IP, IP_TOS, in_buffer, in_size );
case IOCTL_AFD_WINE_GET_IP_TTL:
return do_getsockopt( handle, io, IPPROTO_IP, IP_TTL, out_buffer, out_size );
default:
{
if ((code >> 16) == FILE_DEVICE_NETWORK)
......
......@@ -2458,6 +2458,8 @@ INT WINAPI WS_getsockopt(SOCKET s, INT level,
return server_getsockopt( s, IOCTL_AFD_WINE_GET_IP_TOS, optval, optlen );
case WS_IP_TTL:
return server_getsockopt( s, IOCTL_AFD_WINE_GET_IP_TTL, optval, optlen );
#ifdef IP_UNICAST_IF
case WS_IP_UNICAST_IF:
#endif
......
......@@ -202,6 +202,7 @@ struct afd_get_events_params
#define IOCTL_AFD_WINE_SET_IP_PKTINFO WINE_AFD_IOC(257)
#define IOCTL_AFD_WINE_GET_IP_TOS WINE_AFD_IOC(258)
#define IOCTL_AFD_WINE_SET_IP_TOS WINE_AFD_IOC(259)
#define IOCTL_AFD_WINE_GET_IP_TTL WINE_AFD_IOC(260)
struct afd_create_params
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment