- implemented and tested VENDOR ID payload

This commit is contained in:
Jan Hutter
2005-12-05 14:01:56 +00:00
parent 9bdd74eae7
commit e70c7feb02
13 changed files with 483 additions and 2 deletions
@@ -36,6 +36,7 @@
#include <encoding/payloads/encryption_payload.h>
#include <encoding/payloads/ts_payload.h>
#include <encoding/payloads/delete_payload.h>
#include <encoding/payloads/vendor_id_payload.h>
/*
* build the mappings for payload_type_t
@@ -107,6 +108,8 @@ payload_t *payload_create(payload_type_t type)
return (payload_t*)notify_payload_create();
case DELETE:
return (payload_t*)delete_payload_create();
case VENDOR_ID:
return (payload_t*)vendor_id_payload_create();
case ENCRYPTED:
return (payload_t*)encryption_payload_create();
default: