2007-12-26 22:28:48 -05:00
|
|
|
/*
|
|
|
|
* Ikarus Scheme -- A compiler for R6RS Scheme.
|
2008-01-29 00:34:34 -05:00
|
|
|
* Copyright (C) 2006,2007,2008 Abdulaziz Ghuloum
|
2007-12-26 22:28:48 -05:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 3 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#if (!HAVE_GETADDRINFO)
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
|
|
|
|
struct addrinfo {
|
|
|
|
int ai_family;
|
|
|
|
int ai_socktype;
|
|
|
|
int ai_protocol;
|
|
|
|
size_t ai_addrlen;
|
|
|
|
struct sockaddr *ai_addr;
|
|
|
|
struct addrinfo *ai_next;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern int
|
|
|
|
getaddrinfo(const char *hostname, const char* servname,
|
|
|
|
const struct addrinfo* hints, struct addrinfo** res);
|
|
|
|
|
|
|
|
extern void
|
|
|
|
freeaddrinfo(struct addrinfo *ai);
|
|
|
|
|
2008-06-09 02:15:25 -04:00
|
|
|
|
|
|
|
#ifndef EAI_SYSTEM
|
|
|
|
# define EAI_SYSTEM 11 /* same code as in glibc */
|
|
|
|
#endif
|
|
|
|
|
2007-12-26 22:28:48 -05:00
|
|
|
#endif
|
|
|
|
|