mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Move all Val classes to the zeek namespaces
This commit is contained in:
parent
ec9eff0bd5
commit
64332ca22c
265 changed files with 3154 additions and 3086 deletions
|
@ -80,10 +80,10 @@ public:
|
|||
/**
|
||||
* Returns record value of type "EncapsulatingConn" representing the tunnel.
|
||||
*/
|
||||
RecordValPtr ToVal() const;
|
||||
zeek::RecordValPtr ToVal() const;
|
||||
|
||||
[[deprecated("Remove in v4.1. Use ToVal() instead.")]]
|
||||
RecordVal* GetRecordVal() const
|
||||
zeek::RecordVal* GetRecordVal() const
|
||||
{ return ToVal().release(); }
|
||||
|
||||
friend bool operator==(const EncapsulatingConn& ec1,
|
||||
|
@ -195,9 +195,9 @@ public:
|
|||
* Get the value of type "EncapsulatingConnVector" represented by the
|
||||
* entire encapsulation chain.
|
||||
*/
|
||||
VectorValPtr ToVal() const
|
||||
zeek::VectorValPtr ToVal() const
|
||||
{
|
||||
auto vv = zeek::make_intrusive<VectorVal>(
|
||||
auto vv = zeek::make_intrusive<zeek::VectorVal>(
|
||||
zeek::id::find_type<zeek::VectorType>("EncapsulatingConnVector"));
|
||||
|
||||
if ( conns )
|
||||
|
@ -210,7 +210,7 @@ public:
|
|||
}
|
||||
|
||||
[[deprecated("Remove in v4.1. Use ToVal() instead.")]]
|
||||
VectorVal* GetVectorVal() const
|
||||
zeek::VectorVal* GetVectorVal() const
|
||||
{ return ToVal().release(); }
|
||||
|
||||
friend bool operator==(const EncapsulationStack& e1,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue