|
BroType Enumeration |
Bro value type enumeration.
Namespace: BroccoliSharpAssembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax Public Enumeration BroType
BroccoliSharp.BroType = function();
BroccoliSharp.BroType.createEnum('BroccoliSharp.BroType', false);
Members
| Member name | Value | Description |
---|
| Unknown | 0 |
Unknown type. BRO_TYPE_UNKNOWN |
| Bool | 1 |
Boolean type, Int32 value-type. BRO_TYPE_BOOL |
| Int | 2 |
Integer type, UInt64 value-type. BRO_TYPE_INT |
| Count | 3 |
Count type, UInt64 value-type. BRO_TYPE_COUNT |
| Counter | 4 |
Counter type, UInt64 value-type. BRO_TYPE_COUNTER |
| Double | 5 |
Double type, Double value-type. BRO_TYPE_DOUBLE |
| Time | 6 |
Time type, BroTime value-type. BRO_TYPE_TIME |
| Interval | 7 |
Interval type, Double value-type. BRO_TYPE_INTERVAL |
| String | 8 |
String type, BroString reference-type. BRO_TYPE_STRING |
| Pattern | 9 |
Patten type (currently unsupported in Bro). BRO_TYPE_PATTERN |
| Enum | 10 |
Enumeration type, UInt64 value-type. BRO_TYPE_ENUM |
| Timer | 11 |
Timer type (currently unsupported in Bro). BRO_TYPE_TIMER |
| Port | 12 |
Port type, BroPort value-type. BRO_TYPE_PORT |
| IpAddr | 13 |
IP address type, BroAddress value-type. BRO_TYPE_IPADDR |
| Subnet | 14 |
Subnet type, BroSubnet value-type. BRO_TYPE_SUBNET |
| Any | 15 |
Any type (currently unsupported in Bro). BRO_TYPE_ANY |
| Table | 16 |
Table type, BroTable reference-type. BRO_TYPE_TABLE |
| Union | 17 |
Union type (current unsupported in Bro). BRO_TYPE_UNION |
| Record | 18 |
Record type, BroRecord reference-type. BRO_TYPE_RECORD |
| List | 19 |
List type (used to represent BroRecord based composite BroTable key). BRO_TYPE_LIST |
| Func | 20 |
Function type (currently unsupported in Bro). BRO_TYPE_FUNC |
| File | 21 |
File type (currently unsupported in Bro). BRO_TYPE_FILE |
| Vector | 22 |
Vector type, BroVector reference-type. BRO_TYPE_VECTOR |
| Error | 23 |
Error type (currently unsupported in Bro). BRO_TYPE_ERROR |
| Packet | 24 |
Packet type, BroPacket reference-type. BRO_TYPE_PACKET |
| Set | 25 |
Set type, BroSet reference-type. BRO_TYPE_SET |
Remarks
See
Macros in
broccoli.h file.
See Also