mirror of
https://github.com/zeek/zeek.git
synced 2025-10-08 09:38:19 +00:00
Move IntrusivePtr and utility methods to the zeek namespace
This commit is contained in:
parent
4668378d91
commit
9364e6a5b7
255 changed files with 3761 additions and 3730 deletions
|
@ -240,7 +240,7 @@ bool TCP_Endpoint::DataSent(double t, uint64_t seq, int len, int caplen,
|
|||
tcp_analyzer->EnqueueConnEvent(contents_file_write_failure,
|
||||
Conn()->ConnVal(),
|
||||
val_mgr->Bool(IsOrig()),
|
||||
make_intrusive<StringVal>(buf)
|
||||
zeek::make_intrusive<StringVal>(buf)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
@ -254,7 +254,7 @@ void TCP_Endpoint::AckReceived(uint64_t seq)
|
|||
contents_processor->AckReceived(seq);
|
||||
}
|
||||
|
||||
void TCP_Endpoint::SetContentsFile(IntrusivePtr<BroFile> f)
|
||||
void TCP_Endpoint::SetContentsFile(zeek::IntrusivePtr<BroFile> f)
|
||||
{
|
||||
contents_file = std::move(f);
|
||||
contents_start_seq = ToRelativeSeqSpace(last_seq, seq_wraps);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue