KDECore
netsupp_win32.cpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #include "netsupp.h"
00025
00026 KDECORE_EXPORT void kde_freeaddrinfo(struct kde_addrinfo *ai)
00027 {
00028
00029 }
00030
00031 KDECORE_EXPORT int kde_getaddrinfo(const char *name, const char *service,
00032 const struct addrinfo* hint,
00033 struct kde_addrinfo** result)
00034 {
00035
00036 int err = EAI_SERVICE;
00037 return err;
00038 }
00039
00040 KDECORE_EXPORT char *gai_strerror(int errorcode)
00041 {
00042 return 0;
00043 }
00044 int getnameinfo(const struct sockaddr *sa,
00045 unsigned int salen,
00046 char *host, size_t hostlen,
00047 char *serv, size_t servlen,
00048 int flags)
00049 {
00050
00051 return -1;
00052 }
00053
00054 KDECORE_EXPORT const char* inet_ntop(int af, const void *cp, char *buf, size_t len)
00055 {
00056
00057 return 0;
00058 }
00059
00060 KDECORE_EXPORT int inet_pton(int af, const char *cp, void *buf)
00061 {
00062
00063 return -1;
00064 }
00065