-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change server version string to 6.0.0 (#37)
* Update server version string * fix Errorf call errors * fix Errorf call errors
- Loading branch information
Showing
6 changed files
with
11 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
package version | ||
|
||
// Remote Mediation Clients are expected to send the protobuf message version to ensure compatibility with the server. | ||
// This version string is sent as part of the registration protocol in the Negotiation message. Only if the version is | ||
// accepted by the server then the client probes are allowed to register with the server | ||
// Remote Mediation Clients are expected to send the protobuf message version to ensure | ||
// compatibility with the server. | ||
// This version string is sent as part of the registration protocol in the Negotiation message. | ||
// Client probes are allowed to register with the server only if the server accepts the version. | ||
const ( | ||
PROTOBUF_VERSION string = "5.9.0" | ||
PROTOBUF_VERSION string = "6.0.0" | ||
) |