implemented IETF String Version attribute

This commit is contained in:
Andreas Steffen
2012-10-10 12:30:18 +02:00
parent 7d202f56b9
commit 7174a0a527
8 changed files with 446 additions and 26 deletions
+6 -1
View File
@@ -39,11 +39,16 @@ struct imv_os_state_t {
/**
* Set OS Product Information
*
* @param name OS name
* @param version OS version
*/
void (*set_info)(imv_os_state_t *this, char *info);
void (*set_info)(imv_os_state_t *this, char *name, chunk_t version);
/**
* Get OS Product Information
*
* @result OS name & version
*/
char* (*get_info)(imv_os_state_t *this);