more pretty-printing of ipaccess-find output

This commit is contained in:
Harald Welte 2009-04-30 15:15:37 +00:00
parent 3bfbb84021
commit 3788196026
1 changed files with 22 additions and 1 deletions

View File

@ -11,6 +11,27 @@
#include <openbsc/select.h>
#include <openbsc/timer.h>
#include <openbsc/ipaccess.h>
#include <openbsc/gsm_data.h>
static const char *idtag_names[] = {
[IPAC_IDTAG_SERNR] = "Serial Number",
[IPAC_IDTAG_UNITNAME] = "Unit Name",
[IPAC_IDTAG_LOCATION1] = "Location 1",
[IPAC_IDTAG_LOCATION2] = "Location 2",
[IPAC_IDTAG_EQUIPVERS] = "Equipment Version",
[IPAC_IDTAG_SWVERSION] = "Software Version",
[IPAC_IDTAG_IPADDR] = "IP Address",
[IPAC_IDTAG_MACADDR] = "MAC Address",
[IPAC_IDTAG_UNIT] = "Unit ID",
};
static const char *ipac_idtag_name(int tag)
{
if (tag >= ARRAY_SIZE(idtag_names))
return "unknown";
return idtag_names[tag];
}
static int udp_sock(void)
{
@ -83,7 +104,7 @@ static int parse_response(unsigned char *buf, int len)
t_len = *cur++;
t_tag = *cur++;
printf("tag(%02x)='%s' ", t_tag, cur);
printf("%s='%s' ", ipac_idtag_name(t_tag), cur);
cur += t_len;
}