diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-02-22 03:09:55 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-02-22 03:09:55 +0000 |
commit | 611e57134ef8720264c53f5e0589f41461af4dcb (patch) | |
tree | 7901de389646fca2b4f19dc03c78c679f294afa4 /vms/config.vms | |
parent | 6ad2b1bc3b01dc0cbc9f3d6840532b8e64de9f53 (diff) | |
parent | 2a321948466e7bb48bfd30dd6612a9a479df612a (diff) | |
download | perl-611e57134ef8720264c53f5e0589f41461af4dcb.tar.gz |
[asperl] integrate latest win32 branch
p4raw-id: //depot/asperl@569
Diffstat (limited to 'vms/config.vms')
-rw-r--r-- | vms/config.vms | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/vms/config.vms b/vms/config.vms index 9c31ace90c..0320012c72 100644 --- a/vms/config.vms +++ b/vms/config.vms @@ -1892,6 +1892,51 @@ */ #define HAS_GETHOSTENT /**/ /* config-skip */ +/* HAS_GETHOSTBYADDR: + * This symbol, if defined, indicates that the gethostbyaddr routine is + * available to lookup hosts by their IP addresses. + */ +#define HAS_GETHOSTBYADDR /**/ + +/* Netdb_host_t: + * This symbol holds the type used for the 1st argument + * to gethostbyaddr(). + */ +#define Netdb_host_t char * /**/ + +/* Netdb_hlen_t: + * This symbol holds the type used for the 2nd argument + * to gethostbyaddr(). + */ +#define Netdb_hlen_t int + +/* HAS_GETHOSTBYNAME: + * This symbol, if defined, indicates that the gethostbyname routine is + * available to lookup hosts by their DNS names. + */ +#define HAS_GETHOSTBYNAME /**/ + +/* Netdb_name_t: + * This symbol holds the type used for the 1st argument + * to gethostbyname(), the 1st argument to getnetbyname(), + * the 1st argument to getprotobyname(), the 1st argument to + * getservbyname(), the 2nd argument to getservbyname(), + * and the 2nd argument to getservbyport(). + */ +#define Netdb_name_t long /**/ + +/* HAS_GETNETBYADD: + * This symbol, if defined, indicates that the getnetbyaddr routine is + * available to lookup networks by their IP addresses. + */ +#define HAS_GETNETBYADD /**/ + +/* Netdb_net_t: + * This symbol holds the type used for the 1st argument + * to getnetbyaddr(). + */ +#define Netdb_net_t long + /* HAS_GETHBADD: * This symbol, if defined, indicates that the gethostbyaddr routine is * available to lookup host names by their IP addresses. |