1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-06-30 22:24:12 +03:00

wprobe: fix up data lengths in the ipfix exporter

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18919 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2009-12-24 10:34:29 +00:00
parent 9ad52ed50b
commit c50e168bc6

View File

@ -149,7 +149,10 @@ add_template_fields(ipfix_t *handle, ipfix_template_t *t, struct wprobe_mapping
if (map[i].counter)
continue;
g_data.lens[f] = 8;
g_data.addrs[f++] = &map[i].val->s;
g_data.lens[f] = 8;
g_data.addrs[f++] = &map[i].val->ss;
if (ipfix_add_field( handle, t, FOKUS_USERID, map[i].id + 1, 8) < 0)
exit(1);