diff options
Diffstat (limited to 'examples/binapi')
-rw-r--r-- | examples/binapi/acl/acl.ba.go | 2 | ||||
-rw-r--r-- | examples/binapi/af_packet/af_packet.ba.go | 2 | ||||
-rw-r--r-- | examples/binapi/interfaces/interfaces.ba.go | 2 | ||||
-rw-r--r-- | examples/binapi/ip/ip.ba.go | 2 | ||||
-rw-r--r-- | examples/binapi/memclnt/memclnt.ba.go | 2 | ||||
-rw-r--r-- | examples/binapi/memif/memif.ba.go | 2 | ||||
-rw-r--r-- | examples/binapi/vpe/vpe.ba.go | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/examples/binapi/acl/acl.ba.go b/examples/binapi/acl/acl.ba.go index a00918e..6708e74 100644 --- a/examples/binapi/acl/acl.ba.go +++ b/examples/binapi/acl/acl.ba.go @@ -737,7 +737,7 @@ func AllMessages() []api.Message { } } -// Service represents services in VPP binary API. +// Service represents VPP binary API services in acl module. type Service interface { DumpACL(ctx context.Context, in *ACLDump) ([]*ACLDetails, error) DumpACLInterfaceEtypeWhitelist(ctx context.Context, in *ACLInterfaceEtypeWhitelistDump) ([]*ACLInterfaceEtypeWhitelistDetails, error) diff --git a/examples/binapi/af_packet/af_packet.ba.go b/examples/binapi/af_packet/af_packet.ba.go index 96fd02a..f4e47d0 100644 --- a/examples/binapi/af_packet/af_packet.ba.go +++ b/examples/binapi/af_packet/af_packet.ba.go @@ -188,7 +188,7 @@ func AllMessages() []api.Message { } } -// Service represents services in VPP binary API. +// Service represents VPP binary API services in af_packet module. type Service interface { DumpAfPacket(ctx context.Context, in *AfPacketDump) ([]*AfPacketDetails, error) AfPacketCreate(ctx context.Context, in *AfPacketCreate) (*AfPacketCreateReply, error) diff --git a/examples/binapi/interfaces/interfaces.ba.go b/examples/binapi/interfaces/interfaces.ba.go index 1f369de..e4ad5f5 100644 --- a/examples/binapi/interfaces/interfaces.ba.go +++ b/examples/binapi/interfaces/interfaces.ba.go @@ -1006,7 +1006,7 @@ func AllMessages() []api.Message { } } -// Service represents services in VPP binary API. +// Service represents VPP binary API services in interface module. type Service interface { DumpSwInterface(ctx context.Context, in *SwInterfaceDump) ([]*SwInterfaceDetails, error) DumpSwInterfaceRxPlacement(ctx context.Context, in *SwInterfaceRxPlacementDump) ([]*SwInterfaceRxPlacementDetails, error) diff --git a/examples/binapi/ip/ip.ba.go b/examples/binapi/ip/ip.ba.go index 71a6476..58a9aaa 100644 --- a/examples/binapi/ip/ip.ba.go +++ b/examples/binapi/ip/ip.ba.go @@ -2073,7 +2073,7 @@ func AllMessages() []api.Message { } } -// Service represents services in VPP binary API. +// Service represents VPP binary API services in ip module. type Service interface { DumpIP6Fib(ctx context.Context, in *IP6FibDump) ([]*IP6FibDetails, error) DumpIP6Mfib(ctx context.Context, in *IP6MfibDump) ([]*IP6MfibDetails, error) diff --git a/examples/binapi/memclnt/memclnt.ba.go b/examples/binapi/memclnt/memclnt.ba.go index e7395c7..0fa28dd 100644 --- a/examples/binapi/memclnt/memclnt.ba.go +++ b/examples/binapi/memclnt/memclnt.ba.go @@ -474,7 +474,7 @@ func AllMessages() []api.Message { } } -// Service represents services in VPP binary API. +// Service represents VPP binary API services in memclnt module. type Service interface { APIVersions(ctx context.Context, in *APIVersions) (*APIVersionsReply, error) GetFirstMsgID(ctx context.Context, in *GetFirstMsgID) (*GetFirstMsgIDReply, error) diff --git a/examples/binapi/memif/memif.ba.go b/examples/binapi/memif/memif.ba.go index 1ac0b0a..4123ad8 100644 --- a/examples/binapi/memif/memif.ba.go +++ b/examples/binapi/memif/memif.ba.go @@ -238,7 +238,7 @@ func AllMessages() []api.Message { } } -// Service represents services in VPP binary API. +// Service represents VPP binary API services in memif module. type Service interface { DumpMemif(ctx context.Context, in *MemifDump) ([]*MemifDetails, error) DumpMemifSocketFilename(ctx context.Context, in *MemifSocketFilenameDump) ([]*MemifSocketFilenameDetails, error) diff --git a/examples/binapi/vpe/vpe.ba.go b/examples/binapi/vpe/vpe.ba.go index 25707fc..c475a70 100644 --- a/examples/binapi/vpe/vpe.ba.go +++ b/examples/binapi/vpe/vpe.ba.go @@ -390,7 +390,7 @@ func AllMessages() []api.Message { } } -// Service represents services in VPP binary API. +// Service represents VPP binary API services in vpe module. type Service interface { AddNodeNext(ctx context.Context, in *AddNodeNext) (*AddNodeNextReply, error) Cli(ctx context.Context, in *Cli) (*CliReply, error) |