Skip to content

Commit

Permalink
Update plugin protocol version to 3
Browse files Browse the repository at this point in the history
  • Loading branch information
pbosetti committed Jun 21, 2024
1 parent 9f05880 commit cb9d637
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/filter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ class Filter {
/*!
* Returns the plugin protocol version.
*/
static const int version = 2;
static const int version = 3;

/*!
* Returns the plugin server name.
Expand Down
2 changes: 1 addition & 1 deletion src/sink.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ class Sink {
/*!
* Returns the plugin protocol version.
*/
static const int version = 2;
static const int version = 3;

/*!
* Returns the plugin server name.
Expand Down
6 changes: 5 additions & 1 deletion src/source.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,11 @@ class Source {
bool dummy;


static const int version = 2;
static const int version = 3;

/*!
* Returns the plugin server name.
*/
static const std::string server_name() { return "SourceServer"; }

protected:
Expand Down

0 comments on commit cb9d637

Please sign in to comment.