Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
bc5dd302
Commit
bc5dd302
authored
Oct 30, 2008
by
Hans Leidekker
Committed by
Alexandre Julliard
Oct 30, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wsock32: Make EnumProtocols a wrapper around WSAEnumProtocols instead of forwarding directly.
parent
59dde0d9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
135 additions
and
2 deletions
+135
-2
protocol.c
dlls/wsock32/protocol.c
+133
-0
wsock32.spec
dlls/wsock32/wsock32.spec
+2
-2
No files found.
dlls/wsock32/protocol.c
View file @
bc5dd302
...
@@ -2,6 +2,7 @@
...
@@ -2,6 +2,7 @@
* WSOCK32 specific functions
* WSOCK32 specific functions
*
*
* Copyright (C) 2001 Stefan Leichter
* Copyright (C) 2001 Stefan Leichter
* Copyright (C) 2008 Hans Leidekker
*
*
* This library is free software; you can redistribute it and/or
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* modify it under the terms of the GNU Lesser General Public
...
@@ -36,9 +37,13 @@
...
@@ -36,9 +37,13 @@
#include "windef.h"
#include "windef.h"
#include "winbase.h"
#include "winbase.h"
#include "winsock2.h"
#include "winsock2.h"
#include "nspapi.h"
#include "wine/debug.h"
#include "wine/unicode.h"
#include "wine/unicode.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
winsock
);
/*****************************************************************************
/*****************************************************************************
* inet_network [WSOCK32.1100]
* inet_network [WSOCK32.1100]
*/
*/
...
@@ -62,3 +67,131 @@ struct netent * WINAPI WSOCK32_getnetbyname(const char *name)
...
@@ -62,3 +67,131 @@ struct netent * WINAPI WSOCK32_getnetbyname(const char *name)
return
NULL
;
return
NULL
;
#endif
#endif
}
}
static
DWORD
map_service
(
DWORD
wsaflags
)
{
DWORD
flags
=
0
;
if
(
wsaflags
&
XP1_CONNECTIONLESS
)
flags
|=
XP_CONNECTIONLESS
;
if
(
wsaflags
&
XP1_GUARANTEED_DELIVERY
)
flags
|=
XP_GUARANTEED_DELIVERY
;
if
(
wsaflags
&
XP1_GUARANTEED_ORDER
)
flags
|=
XP_GUARANTEED_ORDER
;
if
(
wsaflags
&
XP1_MESSAGE_ORIENTED
)
flags
|=
XP_MESSAGE_ORIENTED
;
if
(
wsaflags
&
XP1_PSEUDO_STREAM
)
flags
|=
XP_PSEUDO_STREAM
;
if
(
wsaflags
&
XP1_GRACEFUL_CLOSE
)
flags
|=
XP_GRACEFUL_CLOSE
;
if
(
wsaflags
&
XP1_EXPEDITED_DATA
)
flags
|=
XP_EXPEDITED_DATA
;
if
(
wsaflags
&
XP1_CONNECT_DATA
)
flags
|=
XP_CONNECT_DATA
;
if
(
wsaflags
&
XP1_DISCONNECT_DATA
)
flags
|=
XP_DISCONNECT_DATA
;
if
(
wsaflags
&
XP1_SUPPORT_BROADCAST
)
flags
|=
XP_SUPPORTS_BROADCAST
;
if
(
wsaflags
&
XP1_SUPPORT_MULTIPOINT
)
flags
|=
XP_SUPPORTS_MULTICAST
;
if
(
wsaflags
&
XP1_QOS_SUPPORTED
)
flags
|=
XP_BANDWITH_ALLOCATION
;
if
(
wsaflags
&
XP1_PARTIAL_MESSAGE
)
flags
|=
XP_FRAGMENTATION
;
return
flags
;
}
/*****************************************************************************
* EnumProtocolsA [WSOCK32.1111]
*/
INT
WINAPI
EnumProtocolsA
(
LPINT
protocols
,
LPVOID
buffer
,
LPDWORD
buflen
)
{
INT
ret
;
DWORD
size
,
string_size
=
WSAPROTOCOL_LEN
+
1
;
TRACE
(
"%p, %p, %p
\n
"
,
protocols
,
buffer
,
buflen
);
if
(
!
buflen
)
return
SOCKET_ERROR
;
size
=
0
;
ret
=
WSAEnumProtocolsA
(
protocols
,
NULL
,
&
size
);
if
(
ret
==
SOCKET_ERROR
&&
WSAGetLastError
()
==
WSAENOBUFS
)
{
DWORD
num_protocols
=
size
/
sizeof
(
WSAPROTOCOL_INFOA
);
if
(
*
buflen
<
num_protocols
*
(
sizeof
(
PROTOCOL_INFOA
)
+
string_size
))
{
*
buflen
=
num_protocols
*
(
sizeof
(
PROTOCOL_INFOA
)
+
string_size
);
return
SOCKET_ERROR
;
}
if
(
buffer
)
{
WSAPROTOCOL_INFOA
*
wsabuf
;
PROTOCOL_INFOA
*
pi
=
buffer
;
unsigned
int
i
,
string_offset
;
if
(
!
(
wsabuf
=
HeapAlloc
(
GetProcessHeap
(),
0
,
size
)))
return
SOCKET_ERROR
;
ret
=
WSAEnumProtocolsA
(
protocols
,
wsabuf
,
&
size
);
string_offset
=
ret
*
sizeof
(
PROTOCOL_INFOA
);
for
(
i
=
0
;
i
<
ret
;
i
++
)
{
pi
[
i
].
dwServiceFlags
=
map_service
(
wsabuf
[
i
].
dwServiceFlags1
);
pi
[
i
].
iAddressFamily
=
wsabuf
[
i
].
iAddressFamily
;
pi
[
i
].
iMaxSockAddr
=
wsabuf
[
i
].
iMaxSockAddr
;
pi
[
i
].
iMinSockAddr
=
wsabuf
[
i
].
iMinSockAddr
;
pi
[
i
].
iSocketType
=
wsabuf
[
i
].
iSocketType
;
pi
[
i
].
iProtocol
=
wsabuf
[
i
].
iProtocol
;
pi
[
i
].
dwMessageSize
=
wsabuf
[
i
].
dwMessageSize
;
memcpy
((
char
*
)
buffer
+
string_offset
,
wsabuf
[
i
].
szProtocol
,
string_size
);
pi
[
i
].
lpProtocol
=
(
char
*
)
buffer
+
string_offset
;
string_offset
+=
string_size
;
}
HeapFree
(
GetProcessHeap
(),
0
,
wsabuf
);
}
}
return
ret
;
}
/*****************************************************************************
* EnumProtocolsW [WSOCK32.1112]
*/
INT
WINAPI
EnumProtocolsW
(
LPINT
protocols
,
LPVOID
buffer
,
LPDWORD
buflen
)
{
INT
ret
;
DWORD
size
,
string_size
=
(
WSAPROTOCOL_LEN
+
1
)
*
sizeof
(
WCHAR
);
TRACE
(
"%p, %p, %p
\n
"
,
protocols
,
buffer
,
buflen
);
if
(
!
buflen
)
return
SOCKET_ERROR
;
size
=
0
;
ret
=
WSAEnumProtocolsW
(
protocols
,
NULL
,
&
size
);
if
(
ret
==
SOCKET_ERROR
&&
WSAGetLastError
()
==
WSAENOBUFS
)
{
DWORD
num_protocols
=
size
/
sizeof
(
WSAPROTOCOL_INFOW
);
if
(
*
buflen
<
num_protocols
*
(
sizeof
(
PROTOCOL_INFOW
)
+
string_size
))
{
*
buflen
=
num_protocols
*
(
sizeof
(
PROTOCOL_INFOW
)
+
string_size
);
return
SOCKET_ERROR
;
}
if
(
buffer
)
{
WSAPROTOCOL_INFOW
*
wsabuf
;
PROTOCOL_INFOW
*
pi
=
buffer
;
unsigned
int
i
,
string_offset
;
if
(
!
(
wsabuf
=
HeapAlloc
(
GetProcessHeap
(),
0
,
size
)))
return
SOCKET_ERROR
;
ret
=
WSAEnumProtocolsW
(
protocols
,
wsabuf
,
&
size
);
string_offset
=
ret
*
sizeof
(
PROTOCOL_INFOW
);
for
(
i
=
0
;
i
<
ret
;
i
++
)
{
pi
[
i
].
dwServiceFlags
=
map_service
(
wsabuf
[
i
].
dwServiceFlags1
);
pi
[
i
].
iAddressFamily
=
wsabuf
[
i
].
iAddressFamily
;
pi
[
i
].
iMaxSockAddr
=
wsabuf
[
i
].
iMaxSockAddr
;
pi
[
i
].
iMinSockAddr
=
wsabuf
[
i
].
iMinSockAddr
;
pi
[
i
].
iSocketType
=
wsabuf
[
i
].
iSocketType
;
pi
[
i
].
iProtocol
=
wsabuf
[
i
].
iProtocol
;
pi
[
i
].
dwMessageSize
=
wsabuf
[
i
].
dwMessageSize
;
memcpy
((
char
*
)
buffer
+
string_offset
,
wsabuf
[
i
].
szProtocol
,
string_size
);
pi
[
i
].
lpProtocol
=
(
WCHAR
*
)(
char
*
)
buffer
+
string_offset
;
string_offset
+=
string_size
;
}
HeapFree
(
GetProcessHeap
(),
0
,
wsabuf
);
}
}
return
ret
;
}
dlls/wsock32/wsock32.spec
View file @
bc5dd302
...
@@ -62,8 +62,8 @@
...
@@ -62,8 +62,8 @@
1108 stdcall s_perror(str)
1108 stdcall s_perror(str)
1109 stdcall GetAddressByNameA(long ptr str ptr long ptr ptr ptr ptr ptr)
1109 stdcall GetAddressByNameA(long ptr str ptr long ptr ptr ptr ptr ptr)
1110 stdcall GetAddressByNameW(long ptr wstr ptr long ptr ptr ptr ptr ptr)
1110 stdcall GetAddressByNameW(long ptr wstr ptr long ptr ptr ptr ptr ptr)
1111 stdcall EnumProtocolsA(ptr ptr ptr)
ws2_32.WSAEnumProtocolsA
1111 stdcall EnumProtocolsA(ptr ptr ptr)
1112 stdcall EnumProtocolsW(ptr ptr ptr)
ws2_32.WSAEnumProtocolsW
1112 stdcall EnumProtocolsW(ptr ptr ptr)
1113 stdcall GetTypeByNameA(str ptr)
1113 stdcall GetTypeByNameA(str ptr)
1114 stdcall GetTypeByNameW(wstr ptr)
1114 stdcall GetTypeByNameW(wstr ptr)
#1115 stub GetNameByTypeA
#1115 stub GetNameByTypeA
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment