Added ip_scope_text() for translating of scopes to strings.

This commit is contained in:
Martin Mares 1999-11-25 15:34:20 +00:00
parent 1a509a6310
commit ea32afb765
3 changed files with 27 additions and 0 deletions

View file

@ -2,6 +2,7 @@ birdlib.h
bitops.c
bitops.h
ip.h
ip.c
#ifdef IPV6
ipv6.c
ipv6.h

24
lib/ip.c Normal file
View file

@ -0,0 +1,24 @@
/*
* BIRD Library -- IP address routines common for IPv4 and IPv6
*
* (c) 1998--1999 Martin Mares <mj@ucw.cz>
*
* Can be freely distributed and used under the terms of the GNU GPL.
*/
#include <string.h>
#include <stdlib.h>
#include "nest/bird.h"
#include "lib/ip.h"
char *
ip_scope_text(unsigned scope)
{
static char *scope_table[] = { "host", "link", "site", "org", "univ" };
if (scope > SCOPE_UNIVERSE)
return "?";
else
return scope_table[scope];
}

View file

@ -38,6 +38,8 @@
#define SCOPE_ORGANIZATION 3
#define SCOPE_UNIVERSE 4
char *ip_scope_text(unsigned);
/*
* Is it a valid network prefix?
*/