Skip to content

Commit

Permalink
Remove references to bro_broker in broker/Manager.h
Browse files Browse the repository at this point in the history
  • Loading branch information
timwoj committed Apr 24, 2023
1 parent 1b69b4d commit 5177ab1
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions src/broker/Manager.h
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ class Manager : public iosource::IOSource

/**
* Remove a remote peering.
* @param addr the address used in bro_broker::Manager::Peer().
* @param port the port used in bro_broker::Manager::Peer().
* @param addr the address used in zeek::Broker::::Manager::Peer().
* @param port the port used in zeek::Broker::::Manager::Peer().
*/
void Unpeer(const std::string& addr, uint16_t port);

Expand Down Expand Up @@ -243,8 +243,8 @@ class Manager : public iosource::IOSource

/**
* Stop automatically sending an event to peers upon local dispatch.
* @param topic a topic originally given to bro_broker::Manager::AutoPublish().
* @param event an event originally given to bro_broker::Manager::AutoPublish().
* @param topic a topic originally given to zeek::Broker::::Manager::AutoPublish().
* @param event an event originally given to zeek::Broker::::Manager::AutoPublish().
* @return true if automatic events will no occur for the topic/event pair.
*/
bool AutoUnpublishEvent(const std::string& topic, Val* event);
Expand Down Expand Up @@ -282,7 +282,7 @@ class Manager : public iosource::IOSource
/**
* Unregister interest in peer event messages.
* @param topic_prefix a prefix previously supplied to a successful call
* to bro_broker::Manager::Subscribe() or bro_broker::Manager::Forward().
* to zeek::Broker::::Manager::Subscribe() or zeek::Broker::::Manager::Forward().
* @return true if interest in topic prefix is no longer advertised.
*/
bool Unsubscribe(const std::string& topic_prefix);
Expand Down Expand Up @@ -329,8 +329,7 @@ class Manager : public iosource::IOSource
/**
* Register a Zeek table that is associated with a Broker store that is backing it. This
* causes all changes that happen to the Broker store in the future to be applied to theZzeek
* table.
* A single Broker store can only be forwarded to a single table.
* table. A single Broker store can only be forwarded to a single table.
* @param name name of the Broker store.
* @param table pointer to the table/set that is being backed.
* @return true on success, false if the named store is already being forwarded.
Expand Down

0 comments on commit 5177ab1

Please sign in to comment.