mirror of
https://github.com/zeek/zeek.git
synced 2025-10-09 01:58:20 +00:00
Merge remote branch 'origin/master' into topic/robin/logging-internals
Conflicts: policy/bro.init src/builtin-func.l
This commit is contained in:
commit
e3b2748fa6
63 changed files with 952 additions and 547 deletions
24
src/Val.h
24
src/Val.h
|
@ -88,7 +88,7 @@ public:
|
|||
#endif
|
||||
}
|
||||
|
||||
Val(int i, TypeTag t)
|
||||
Val(int32 i, TypeTag t)
|
||||
{
|
||||
val.int_val = bro_int_t(i);
|
||||
type = base_type(t);
|
||||
|
@ -98,27 +98,7 @@ public:
|
|||
#endif
|
||||
}
|
||||
|
||||
Val(long i, TypeTag t)
|
||||
{
|
||||
val.int_val = bro_int_t(i);
|
||||
type = base_type(t);
|
||||
attribs = 0;
|
||||
#ifdef DEBUG
|
||||
bound_id = 0;
|
||||
#endif
|
||||
}
|
||||
|
||||
Val(unsigned int u, TypeTag t)
|
||||
{
|
||||
val.uint_val = bro_uint_t(u);
|
||||
type = base_type(t);
|
||||
attribs = 0;
|
||||
#ifdef DEBUG
|
||||
bound_id = 0;
|
||||
#endif
|
||||
}
|
||||
|
||||
Val(unsigned long u, TypeTag t)
|
||||
Val(uint32 u, TypeTag t)
|
||||
{
|
||||
val.uint_val = bro_uint_t(u);
|
||||
type = base_type(t);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue