zeek/policy
Robin Sommer 8bacb6eb3d New BiF record_field_vals() that returns the fields of a record in a
table with meta-information.

Example:

type r: record {
	a: count;
	b: string &default="Foo";
	c: double &optional;
	d: string &log;
};

event bro_init()
{
    local x: r = [$a=42, $d="Bar"];
    print record_fields(x);
}

This prints:

  {
  [a] = [type_name=record, log=F, value=42, default_val=<uninitialized>]
  [b] = [type_name=record, log=F, value=<uninitialized>, default_val=Foo],
  [c] = [type_name=record, log=F, value=<uninitialized>, default_val=<uninitialized>],
  [d] = [type_name=record, log=T, value=Bar, default_val=<uninitialized>],
  }

This is one more step in Seth's quest for full inspection support. :-)
2011-07-07 19:56:48 -07:00
..
detectors Renamed HTTP::build_url function to HTTP::build_url_http 2011-06-17 23:26:54 -04:00
frameworks Fixed a problem with the cluster framework unintentionally terminating bro. 2011-07-07 21:28:26 -04:00
integration/barnyard2 Added the initial Barnyard2 integration scripts. 2011-06-17 10:45:21 -04:00
protocols Start detecting Microsoft Sharepoint servers. 2011-07-06 09:18:22 -04:00
tuning Updates to the DPD framework. 2011-06-30 21:26:30 -04:00
utils New default notice actions for emailing network admins. 2011-06-25 01:17:09 -04:00
all.bro Initial commit of the new cluster framework. 2011-07-07 13:21:19 -04:00
bro.init New BiF record_field_vals() that returns the fields of a record in a 2011-07-07 19:56:48 -07:00
CMakeLists.txt Forgot to move the CMakeLists.txt file over to the new policy directory. 2011-03-29 10:22:42 -04:00
functions.bro Clean up for the functions.bro script. 2011-06-03 07:51:46 -04:00
hot.conn.bro Rework of conn.bro. 2011-03-04 23:16:38 -05:00
site.bro New default notice actions for emailing network admins. 2011-06-25 01:17:09 -04:00
test-all.bro Fixing tests. 2011-07-01 22:26:45 -07:00