diff options
author | Bruce Momjian <bruce@momjian.us> | 1998-10-20 23:03:20 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1998-10-20 23:03:20 +0000 |
commit | a824add49a899eb7f64883ad49cf21cba8f44c9a (patch) | |
tree | 49ed1f3c68e77804801c6d6ac458c86ee5af0183 /src/backend/utils/adt/inet.c | |
parent | d7fc00c20d6deb6459fa43d8a509be749359e64f (diff) |
Remove unused INET functions for D'Arcy.
Diffstat (limited to 'src/backend/utils/adt/inet.c')
-rw-r--r-- | src/backend/utils/adt/inet.c | 111 |
1 files changed, 1 insertions, 110 deletions
diff --git a/src/backend/utils/adt/inet.c b/src/backend/utils/adt/inet.c index 9d547184c27..6c1f74f1878 100644 --- a/src/backend/utils/adt/inet.c +++ b/src/backend/utils/adt/inet.c @@ -3,7 +3,7 @@ * is for IP V4 CIDR notation, but prepared for V6: just * add the necessary bits where the comments indicate. * - * $Id: inet.c,v 1.5 1998/10/17 04:08:40 momjian Exp $ + * $Id: inet.c,v 1.6 1998/10/20 23:03:19 momjian Exp $ */ #include <sys/types.h> @@ -313,115 +313,6 @@ inet_masklen(inet *ip) } text * -inet_host(inet *ip) -{ - char *dst, - tmp[sizeof("255.255.255.255/32")]; - - if (ip_family(ip) == AF_INET) - { -#ifdef BAD - /* It's an IP V4 address: */ - if (inet_cidr_ntop(AF_INET, &ip_v4addr(ip), 4, -1, - tmp, sizeof(tmp)) < 0) - { - elog(ERROR, "unable to print host (%s)", strerror(errno)); - return (NULL); - } -#endif - } - else - { - /* Go for an IPV6 address here, before faulting out: */ - elog(ERROR, "unknown address family (%d)", ip_family(ip)); - return (NULL); - } - dst = palloc(strlen(tmp) + 1); - if (dst == NULL) - { - elog(ERROR, "unable to allocate memory in inet_out()"); - return (NULL); - } - strcpy(dst, tmp); - return (dst); - -} - -text * -inet_network_without_bits(inet *ip) -{ - char *dst, - tmp[sizeof("255.255.255.255/32")]; - - if (ip_family(ip) == AF_INET) - { - /* It's an IP V4 address: */ - int addr = ip_v4addr(ip) & (-1 << (32 - ip_bits(ip))); -#ifdef BAD - - if (inet_cidr_ntop(AF_INET, &addr, (int)(ip_bits(ip)/8), -1, - tmp, sizeof(tmp)) < 0) - { - elog(ERROR, "unable to print address (%s)", strerror(errno)); - return (NULL); - } -#endif - } - else - { - /* Go for an IPV6 address here, before faulting out: */ - elog(ERROR, "unknown address family (%d)", ip_family(ip)); - return (NULL); - } - dst = palloc(strlen(tmp) + 1); - if (dst == NULL) - { - elog(ERROR, "unable to allocate memory in inet_out()"); - return (NULL); - } - strcpy(dst, tmp); - return (dst); - -} - -text * -inet_network_with_bits(inet *ip) -{ - char *dst, - tmp[sizeof("255.255.255.255/32")]; - - if (ip_family(ip) == AF_INET) - { - /* It's an IP V4 address: */ - int addr = ip_v4addr(ip) & (-1 << (32 - ip_bits(ip))); -#ifdef BAD - - if (inet_cidr_ntop(AF_INET, &addr, (int)(ip_bits(ip)/8), - ip_bits(ip), tmp, sizeof(tmp)) < 0) - { - elog(ERROR, "unable to print address (%s)", strerror(errno)); - return (NULL); - } -#endif - } - else - { - /* Go for an IPV6 address here, before faulting out: */ - elog(ERROR, "unknown address family (%d)", ip_family(ip)); - return (NULL); - } - dst = palloc(strlen(tmp) + 1); - if (dst == NULL) - { - elog(ERROR, "unable to allocate memory in inet_out()"); - return (NULL); - } - strcpy(dst, tmp); - return (dst); - -} - -text * inet_broadcast(inet *ip) { char *dst, |