X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=api%2Fbinapi.go;fp=api%2Fbinapi.go;h=cb4ab85cee44fc3b2393aa9241fc3e28b96cd8e6;hb=58da9ac6e691a8c660eb8ca838a154e11da0db68;hp=04fdc9ee299ea78c4cf1e3ab9338c84ea696c10e;hpb=a155cd438c6558da266c1c5931361ea088b35653;p=govpp.git diff --git a/api/binapi.go b/api/binapi.go index 04fdc9e..cb4ab85 100644 --- a/api/binapi.go +++ b/api/binapi.go @@ -19,11 +19,14 @@ import ( "reflect" ) -// MessageType represents the type of a VPP message. -// Note: this is currently derived from the message header (fields), -// and in many cases it does not represent the actual type of VPP message. -// This means that some replies can be identified as requests, etc. -// TODO: use services to identify type of message +// GoVppAPIPackageIsVersionX is referenced from generated binapi files +// to assert that that code is compatible with this version of the GoVPP api package. +const ( + GoVppAPIPackageIsVersion1 = true + GoVppAPIPackageIsVersion2 = true +) + +// MessageType represents the type of a VPP message derived from message header fields. type MessageType int const ( @@ -80,8 +83,3 @@ func GetRegisteredMessages() map[string]Message { func GetRegisteredMessageTypes() map[reflect.Type]string { return registeredMessageTypes } - -// GoVppAPIPackageIsVersionX is referenced from generated binapi files -// to assert that that code is compatible with this version of the GoVPP api package. -const GoVppAPIPackageIsVersion1 = true -const GoVppAPIPackageIsVersion2 = true