123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323 |
- unit cNetDB;
- {*-
- * Copyright (c) 1980, 1983, 1988, 1993
- * The Regents of the University of California. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
- * may be used to endorse or promote products derived from this software
- * without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
- * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
- * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
- * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
- * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- * SUCH DAMAGE.
- *
- * -
- * Portions Copyright (c) 1993 by Digital Equipment Corporation.
- *
- * Permission to use, copy, modify, and distribute this software for any
- * purpose with or without fee is hereby granted, provided that the above
- * copyright notice and this permission notice appear in all copies, and that
- * the name of Digital Equipment Corporation not be used in advertising or
- * publicity pertaining to distribution of the document or software without
- * specific, written prior permission.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
- * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
- * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT
- * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
- * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
- * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
- * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
- * SOFTWARE.
- * -
- * --Copyright--
- *}
- {*
- * @(#)netdb.h 8.1 (Berkeley) 6/2/93
- * From: Id: netdb.h,v 8.9 1996/11/19 08:39:29 vixie Exp $
- * $FreeBSD: src/include/netdb.h,v 1.38.2.1 2005/07/22 20:17:30 ume Exp $
- *}
- {$mode objfpc}{$H+}
- interface
- uses
- BaseUnix, Sockets,initc;
-
- const
- LIB_C = clib; // use initc's idea of what libc is called. In the future overrides might be necessary here.
- // (older BSD convention is to have a separate libresolve that contains these functions)
- // Error return codes from gethostbyname() and gethostbyaddr()
- // (left in h_errno).
- const
- NETDB_INTERNAL = -(1); { see errno }
- NETDB_SUCCESS = 0; { no problem }
- HOST_NOT_FOUND = 1; { Authoritative Answer Host not found }
- TRY_AGAIN = 2; { Non-Authoritative Host not found, or SERVERFAIL }
- NO_RECOVERY = 3; { Non recoverable errors, FORMERR, REFUSED, NOTIMP }
- NO_DATA = 4; { Valid name, no data record of requested type }
- NO_ADDRESS = NO_DATA; { no address, look for MX record }
- {$IF DEFINED(FREEBSD)}
- AI_PASSIVE = $00000001;
- AI_CANONNAME = $00000002;
- AI_NUMERICHOST = $00000004;
- AI_V4MAPPED = $00000008;
- AI_ALL = $00000010;
- AI_ADDRCONFIG = $00000020;
- AI_DEFAULT = (AI_V4MAPPED OR AI_ADDRCONFIG);
- EAI_ADDRFAMILY = 1; (* address family for hostname not supported *)
- EAI_AGAIN = 2; (* temporary failure in name resolution *)
- EAI_BADFLAGS = 3; (* invalid value for ai_flags *)
- EAI_FAIL = 4; (* non-recoverable failure in name resolution *)
- EAI_FAMILY = 5; (* ai_family not supported *)
- EAI_MEMORY = 6; (* memory allocation failure *)
- EAI_NODATA = 7; (* no address associated with hostname *)
- EAI_NONAME = 8; (* hostname nor servname provided, or not known *)
- EAI_SERVICE = 9; (* servname not supported for ai_socktype *)
- EAI_SOCKTYPE = 10; (* ai_socktype not supported *)
- EAI_SYSTEM = 11; (* system error returned in errno *)
- EAI_BADHINTS = 12;
- EAI_PROTOCOL = 13;
- EAI_MAX = 14;
- {$ELSE}
- (* Possible values for `ai_flags' field in `addrinfo' structure. *)
- AI_PASSIVE = $0001; (* Socket address is intended for `bind'. *)
- AI_CANONNAME = $0002; (* Request for canonical name. *)
- AI_NUMERICHOST = $0004; (* Don't use name resolution. *)
- AI_V4MAPPED = $0008; (* IPv4 mapped addresses are acceptable. *)
- AI_ALL = $0010; (* Return IPv4 mapped and IPv6 addresses. *)
- AI_ADDRCONFIG = $0020; (* Use configuration of this host to choose returned address type.. *)
- AI_IDN = $0040; (* IDN encode input (assuming it is encoded in the current locale's character set) before looking it up. *)
- AI_CANONIDN = $0080; (* Translate canonical name from IDN format. *)
- AI_IDN_ALLOW_UNASSIGNED = $0100; (* Don't reject unassigned Unicode code points. *)
- AI_IDN_USE_STD3_ASCII_RULES = $0200; (* Validate strings according to STD3 rules. *)
- AI_NUMERICSERV = $0400; (* Don't use name resolution. *)
- (* Error values for `getaddrinfo' function. *)
- EAI_BADFLAGS = -1; (* Invalid value for `ai_flags' field. *)
- EAI_NONAME = -2; (* NAME or SERVICE is unknown. *)
- EAI_AGAIN = -3; (* Temporary failure in name resolution. *)
- EAI_FAIL = -4; (* Non-recoverable failure in name res. *)
- EAI_NODATA = -5; (* No address associated with NAME. *)
- EAI_FAMILY = -6; (* `ai_family' not supported. *)
- EAI_SOCKTYPE = -7; (* `ai_socktype' not supported. *)
- EAI_SERVICE = -8; (* SERVICE not supported for `ai_socktype'. *)
- EAI_ADDRFAMILY = -9; (* Address family for NAME not supported. *)
- EAI_MEMORY = -10; (* Memory allocation failure. *)
- EAI_SYSTEM = -11; (* System error returned in `errno'. *)
- EAI_OVERFLOW = -12; (* Argument buffer overflow. *)
- EAI_INPROGRESS = -100; (* Processing request in progress. *)
- EAI_CANCELED = -101; (* Request canceled. *)
- EAI_NOTCANCELED = -102; (* Request not canceled. *)
- EAI_ALLDONE = -103; (* All requests done. *)
- EAI_INTR = -104; (* Interrupted by a signal. *)
- EAI_IDN_ENCODE = -105; (* IDN encoding failed. *)
- {$ENDIF}
- (* Constants for getnameinfo() *)
- NI_MAXHOST = 1025;
- NI_MAXSERV = 32;
- (* Flag values for getnameinfo() *)
- {$IF DEFINED(FREEBSD)}
- NI_NOFQDN = $00000001;
- NI_NUMERICHOST = $00000002;
- NI_NAMEREQD = $00000004;
- NI_NUMERICSERV = $00000008;
- NI_DGRAM = $00000010;
- NI_NUMERICSCOPE = $00000020;
- {$ELSE}
- NI_NUMERICHOST = 1;
- NI_NUMERICSERV = 2;
- NI_NOFQDN = 4;
- NI_NAMEREQD = 8;
- NI_DGRAM = 16;
- {$ENDIF}
- {
- * Scope delimit character
- }
- const
- SCOPE_DELIMITER = '%';
-
- //#define h_addr h_addr_list[0] /* address, for backward compatibility */
- type
- {*
- * Structures returned by network data base library. All addresses are
- * supplied in host order, and returned in network order (suitable for
- * use in system calls).
- *}
- hostent = record
- h_name: PChar; {/* official name of host *}
- h_aliases: PPChar; {* alias list *}
- h_addrtype: cInt; {* host address type *}
- h_length: cInt; {* length of address *}
- h_addr_list: PPChar;{* list of addresses from name server *}
- end;
- THostEnt = hostent;
- PHostEnt = ^THostEnt;
- PPHostEnt = ^PHostEnt;
- netent = record
- n_name: PChar; {* official name of net *}
- n_aliases: PPChar; {* alias list *}
- n_addrtype: cInt; {* net address type *}
- n_net: cuInt32; {* network # *}
- end;
- TNetEnt = netent;
- PNetEnt = ^TNetEnt;
- PPNetEnt = ^PNetEnt;
- servent = record
- s_name: PChar; {* official service name *}
- s_aliases: PPChar;{* alias list *}
- s_port: cInt; {* port # *}
- s_proto: PChar; {* protocol to use *}
- end;
- TServEnt = servent;
- PServEnt = ^TServEnt;
- PPServEnt = ^PServEnt;
- protoent = record
- p_name: PChar; {* official protocol name *}
- p_aliases: PPChar; {* alias list *}
- p_proto: cInt; {* protocol # *}
- end;
- TProtoEnt = protoent;
- PProtoEnt = ^TProtoEnt;
- PPProtoEnt = ^PProtoEnt;
- {$if defined(LINUX) or defined(OPENBSD)}
- {$define FIRST_ADDR_THEN_CANONNAME}
- {$endif}
- {$if defined(FREEBSD) or defined(NETBSD) or defined(DRAGONFLY) or defined(SOLARIS)}
- {$define FIRST_CANONNAME_THEN_ADDR}
- {$endif}
- {$if not defined(FIRST_CANONNAME_THEN_ADDR) and not defined(FIRST_ADDR_THEN_CANONNAME)}
- {$error fatal 'Please consult the netdb.h file for your system to determine the order of ai_addr and ai_canonname'}
- {$endif}
- PAddrInfo = ^addrinfo;
- addrinfo = record
- ai_flags: cInt; {* AI_PASSIVE, AI_CANONNAME, AI_NUMERICHOST *}
- ai_family: cInt; {* PF_xxx *}
- ai_socktype: cInt; {* SOCK_xxx *}
- ai_protocol: cInt; {* 0 or IPPROTO_xxx for IPv4 and IPv6 *}
- ai_addrlen: TSocklen; {* length of ai_addr *}
- {$ifdef FIRST_CANONNAME_THEN_ADDR}
- ai_canonname: PChar; {* canonical name for hostname *}
- ai_addr: psockaddr; {* binary address *}
- {$endif}
- {$ifdef FIRST_ADDR_THEN_CANONNAME}
- ai_addr: psockaddr; {* binary address *}
- ai_canonname: PChar; {* canonical name for hostname *}
- {$endif}
- ai_next: PAddrInfo; {* next structure in linked list *}
- end;
- TAddrInfo = addrinfo;
- PPAddrInfo = ^PAddrInfo;
-
- procedure endhostent; cdecl; external LIB_C name 'endhostent';
- procedure endnetent; cdecl; external LIB_C name 'endnetent';
- procedure endnetgrent; cdecl; external LIB_C name 'endnetgrent';
- procedure endprotoent; cdecl; external LIB_C name 'endprotoent';
- procedure endservent; cdecl; external LIB_C name 'endservent';
- procedure freehostent(ptr: PHostEnt); cdecl; external LIB_C name 'freehostent';
- function gethostbyaddr(addr: PChar; len, typ: cInt): PHostEnt; cdecl; external LIB_C name 'gethostbyaddr';
- function gethostbyname(name: PChar): PHostEnt; cdecl; external LIB_C name 'gethostbyname';
- function gethostbyname2(name: PChar; af: cInt): PHostEnt; cdecl; external LIB_C name 'gethostbyname2';
- function gethostent: PHostEnt; cdecl; external LIB_C name 'gethostent';
- function getipnodebyaddr(src: Pointer; len: size_t; af: cInt; error_num: PcInt): PHostEnt; cdecl; external LIB_C name 'getipnodebyaddr';
- function getipnodebyname(name: PChar; af, flags: cInt; error_num: PcInt): PHostEnt; cdecl; external LIB_C name 'getipnodebyname';
- function getnetbyaddr(net: cint32; typ: cInt): PNetEnt; cdecl; external LIB_C name 'getnetbyaddr';
- function getnetbyname(name: PChar): PNetEnt; cdecl; external LIB_C name 'getnetbyname';
- function getnetent: PNetEnt; cdecl; external LIB_C name 'getnetent';
- function getnetgrent(host, user, domain: PPChar): cInt; cdecl; external LIB_C name 'getnetgrent';
- function getprotobyname(name: PChar): PProtoEnt; cdecl; external LIB_C name 'getprotobyname';
- function getprotobynumber(proto: cInt): PProtoEnt; cdecl; external LIB_C name 'getprotobynumber';
- function getprotoent: PProtoEnt; cdecl; external LIB_C name 'getprotoent';
- function getservbyname(name, proto: PChar): PServEnt; cdecl; external LIB_C name 'getservbyname';
- function getservbyport(port: cInt; proto: PChar): PServEnt; cdecl; external LIB_C name 'getservbyport';
- function getservent: PServEnt; cdecl; external LIB_C name 'getservent';
- procedure herror(erstring: PChar); cdecl; external LIB_C name 'herror';
- function hstrerror(err: cInt): PChar; cdecl; external LIB_C name 'hstrerror';
- function innetgr(netgroup, host, user, domain: PChar): cInt; cdecl; external LIB_C name 'innetgr';
- procedure sethostent(i: cInt); cdecl; external LIB_C name 'sethostent';
- {* void sethostfile(const char *); *}
- procedure setnetent(stayopen: cInt); cdecl; external LIB_C name 'setnetent';
- procedure setprotoent(stayopen: cInt); cdecl; external LIB_C name 'setprotoent';
- function getaddrinfo(name, service: PChar; hints: PAddrInfo;
- res: PPAddrInfo): cInt; cdecl; external LIB_C name 'getaddrinfo';
- function getnameinfo(sa: PSockAddr; salen: TSockLen; host: PChar; hostlen: TSize;
- serv: PChar; servlen: TSize; flags: cInt): cInt; cdecl; external LIB_C name 'getnameinfo';
- procedure freeaddrinfo(ai: PAddrInfo); cdecl; external LIB_C name 'freeaddrinfo';
- function gai_strerror(ecode: cInt): PChar; cdecl; external LIB_C name 'gai_strerror';
- procedure setnetgrent(netgroup: PChar); cdecl; external LIB_C name 'setnetgrent';
- procedure setservent(stayopen: cInt); cdecl; external LIB_C name 'setservent';
- implementation
- end.
|