mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 02:28:21 +00:00
Move byte_buffer types from cluster and storage into util
This commit is contained in:
parent
40b75cb809
commit
1169fcf2a2
15 changed files with 59 additions and 70 deletions
|
@ -60,17 +60,16 @@ private:
|
|||
|
||||
void DoTerminate() override;
|
||||
|
||||
bool DoPublishEvent(const std::string& topic, const std::string& format,
|
||||
const cluster::detail::byte_buffer& buf) override;
|
||||
bool DoPublishEvent(const std::string& topic, const std::string& format, const byte_buffer& buf) override;
|
||||
|
||||
bool DoSubscribe(const std::string& topic_prefix, SubscribeCallback cb) override;
|
||||
|
||||
bool DoUnsubscribe(const std::string& topic_prefix) override;
|
||||
|
||||
bool DoPublishLogWrites(const logging::detail::LogWriteHeader& header, const std::string& format,
|
||||
cluster::detail::byte_buffer& buf) override;
|
||||
byte_buffer& buf) override;
|
||||
|
||||
bool DoProcessBackendMessage(int tag, detail::byte_buffer_span payload) override;
|
||||
bool DoProcessBackendMessage(int tag, byte_buffer_span payload) override;
|
||||
|
||||
// Script level variables.
|
||||
std::string connect_xsub_endpoint;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue