Work on parameter estimation and serialization.

This commit is contained in:
Matthias Vallentin 2013-06-03 22:55:21 -07:00
parent f529df33e0
commit f708cd4a36
6 changed files with 198 additions and 22 deletions

View file

@ -244,6 +244,7 @@ OpaqueType* md5_type;
OpaqueType* sha1_type;
OpaqueType* sha256_type;
OpaqueType* entropy_type;
OpaqueType* bloomfilter_type;
#include "const.bif.netvar_def"
#include "types.bif.netvar_def"
@ -310,6 +311,7 @@ void init_general_global_var()
sha1_type = new OpaqueType("sha1");
sha256_type = new OpaqueType("sha256");
entropy_type = new OpaqueType("entropy");
bloomfilter_type = new OpaqueType("bloomfilter");
}
void init_net_var()