diff options
author | Martin Mares <mj@ucw.cz> | 1998-11-27 19:29:27 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1998-11-27 19:29:27 +0000 |
commit | dfeef5d8bb9fe19cb44d4121fd8324179a38b7a0 (patch) | |
tree | de2dd54f7d4ce687d80f8f16d1e721c09b330d71 /lib/ipv4.c | |
parent | a3afae585af9a544f919a95509107aae33fbe53c (diff) |
Implemented ip_pton()
Diffstat (limited to 'lib/ipv4.c')
-rw-r--r-- | lib/ipv4.c | 28 |
1 files changed, 28 insertions, 0 deletions
@@ -8,6 +8,9 @@ #ifndef IPV6 +#include <string.h> +#include <stdlib.h> + #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 |