]>
Commit | Line | Data |
---|---|---|
882dfc67 JS |
1 | // Copyright 1998, Ben Goetter. All rights reserved. |
2 | ||
3 | /* | |
39fc096d | 4 | patch holes in winsock |
882dfc67 JS |
5 | |
6 | WCE 2.0 lacks many of the 'database' winsock routines. | |
7 | Stub just enough them for ss.dll. | |
8 | ||
9 | getprotobynumber | |
10 | getservbyport | |
11 | getservbyname | |
12 | ||
13 | */ | |
14 | ||
15 | struct servent * WINSOCKAPI getservbyport(int port, const char * proto) ; | |
16 | ||
17 | struct servent * WINSOCKAPI getservbyname(const char * name, | |
18 | const char * proto) ; | |
19 | struct protoent * WINSOCKAPI getprotobynumber(int proto) ; | |
20 |