Skip to content

Commit 345b352

Browse files
committed
IPFIX Filter: add support for ipfix OCTET_ARRAY in filter
1 parent f990346 commit 345b352

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/ipfix_filter/ipfix_filter.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ get_filter_data_type(const struct fds_iemgr_elem *elem)
177177
return FDS_FDT_MAC;
178178

179179
case FDS_ET_STRING:
180+
case FDS_ET_OCTET_ARRAY:
180181
return FDS_FDT_STR;
181182

182183
case FDS_ET_DATE_TIME_SECONDS:
@@ -386,6 +387,7 @@ read_record_field(struct fds_drec *record, const struct fds_iemgr_elem *field_de
386387
break;
387388

388389
case FDS_ET_STRING:
390+
case FDS_ET_OCTET_ARRAY:
389391
out_value->str.len = size;
390392
out_value->str.chars = (char *) data;
391393
break;

0 commit comments

Comments
 (0)