• Skip to content
  • Skip to link menu
Trinity API Reference
  • Trinity API Reference
  • tdecore
 

tdecore

  • tdecore
netsupp_win32.cpp
1/*
2 * This file is part of the KDE libraries
3 * Copyright (C) 2000-2003 Thiago Macieira <thiago.macieira@kdemail.net>>
4 *
5 * win32 version of netsupp.cpp
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Library General Public License for more details.
16 *
17 * You should have received a copy of the GNU Library General Public License
18 * along with this library; see the file COPYING.LIB. If not, write to
19 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 * Boston, MA 02110-1301, USA.
21 **/
22
23
24#include "netsupp.h"
25
26TDECORE_EXPORT void kde_freeaddrinfo(struct kde_addrinfo *ai)
27{
28 //TODO
29}
30
31TDECORE_EXPORT int kde_getaddrinfo(const char *name, const char *service,
32 const struct addrinfo* hint,
33 struct kde_addrinfo** result)
34{
35 //TODO
36 int err = EAI_SERVICE;
37 return err;
38}
39
40TDECORE_EXPORT char *gai_strerror(int errorcode)
41{
42 return 0;
43}
44int getnameinfo(const struct sockaddr *sa,
45 unsigned int salen,
46 char *host, size_t hostlen,
47 char *serv, size_t servlen,
48 int flags)
49{
50 //TODO
51 return -1;
52}
53
54TDECORE_EXPORT const char* inet_ntop(int af, const void *cp, char *buf, size_t len)
55{
56 //TODO
57 return 0;
58}
59
60TDECORE_EXPORT int inet_pton(int af, const char *cp, void *buf)
61{
62 //TODO
63 return -1;
64}
65

tdecore

Skip menu "tdecore"
  • Main Page
  • Modules
  • Namespace List
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Namespace Members
  • Class Members
  • Related Pages

tdecore

Skip menu "tdecore"
  • arts
  • dcop
  • dnssd
  • interfaces
  •   kspeech
  •     interface
  •     library
  •   tdetexteditor
  • kate
  • kded
  • kdoctools
  • kimgio
  • kjs
  • libtdemid
  • libtdescreensaver
  • tdeabc
  • tdecmshell
  • tdecore
  • tdefx
  • tdehtml
  • tdeinit
  • tdeio
  •   bookmarks
  •   httpfilter
  •   kpasswdserver
  •   kssl
  •   tdefile
  •   tdeio
  •   tdeioexec
  • tdeioslave
  •   http
  • tdemdi
  •   tdemdi
  • tdenewstuff
  • tdeparts
  • tdeprint
  • tderandr
  • tderesources
  • tdespell2
  • tdesu
  • tdeui
  • tdeunittest
  • tdeutils
  • tdewallet
Generated for tdecore by doxygen 1.9.4
This website is maintained by Timothy Pearson.