From: Martin Mares Date: Fri, 27 Nov 1998 19:29:27 +0000 (+0000) Subject: Implemented ip_pton() X-Git-Tag: v1.2.0~1806 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dfeef5d8bb9fe19cb44d4121fd8324179a38b7a0;p=thirdparty%2Fbird.git Implemented ip_pton() --- diff --git a/lib/ip.h b/lib/ip.h index 2e9c8a5d2..1bce89f8f 100644 --- a/lib/ip.h +++ b/lib/ip.h @@ -49,5 +49,6 @@ char *ip_ntop(ip_addr a, char *); char *ip_ntox(ip_addr a, char *); +int ip_pton(char *a, ip_addr *o); #endif diff --git a/lib/ipv4.c b/lib/ipv4.c index 5ec2ffb87..54e1adb35 100644 --- a/lib/ipv4.c +++ b/lib/ipv4.c @@ -8,6 +8,9 @@ #ifndef IPV6 +#include +#include + #include "nest/bird.h" #include "lib/ip.h" #include "lib/string.h" @@ -65,4 +68,29 @@ ipv4_class_mask(u32 a) return m; } +int +ip_pton(char *a, ip_addr *o) +{ + int i,j; + unsigned long int l; + u32 ia = 0; + + i=4; + while (i--) + { + char *d, *c = strchr(a, '.'); + if (!c != !i) + return 0; + if (c) + *c++ = 0; + l = strtoul(a, &d, 10); + if (d && *d || l > 255) + return 0; + ia = (ia << 8) | l; + a = c; + } + *o = ipa_from_u32(ia); + return 1; +} + #endif