Implemented SWID prototype IMC/IMV pair

This commit is contained in:
Andreas Steffen
2013-08-15 23:34:23 +02:00
parent 0bd29a438e
commit b38d9d5a54
62 changed files with 8572 additions and 78 deletions
+3 -2
View File
@@ -20,7 +20,7 @@
typedef struct private_imv_workitem_t private_imv_workitem_t;
ENUM(imv_workitem_type_names, IMV_WORKITEM_PACKAGES, IMV_WORKITEM_UDP_PORT_BLOCK,
ENUM(imv_workitem_type_names, IMV_WORKITEM_PACKAGES, IMV_WORKITEM_SWID_TAGS,
"PCKGS",
"UNSRC",
"FWDEN",
@@ -34,7 +34,8 @@ ENUM(imv_workitem_type_names, IMV_WORKITEM_PACKAGES, IMV_WORKITEM_UDP_PORT_BLOCK
"TCPOP",
"TCPBL",
"UDPOP",
"UDPBL"
"UDPBL",
"SWIDT"
);
/**
+2 -1
View File
@@ -43,7 +43,8 @@ enum imv_workitem_type_t {
IMV_WORKITEM_TCP_PORT_OPEN = 11,
IMV_WORKITEM_TCP_PORT_BLOCK = 12,
IMV_WORKITEM_UDP_PORT_OPEN = 13,
IMV_WORKITEM_UDP_PORT_BLOCK = 14
IMV_WORKITEM_UDP_PORT_BLOCK = 14,
IMV_WORKITEM_SWID_TAGS = 15
};
extern enum_name_t *imv_workitem_type_names;