aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorOndrej Fabry <ofabry@cisco.com>2019-06-12 18:37:20 +0200
committerOndrej Fabry <ofabry@cisco.com>2019-06-12 19:41:35 +0200
commit682250e328472e855a4c59e9e5f004473b6af0d3 (patch)
tree6de85c22a2d18a83ba05f2713c75c9d089c6275b /examples
parentc4522fe10317b1729a0820dc880afc78c663f64d (diff)
Fix parsing API with removed CRC for types and unions
- method GetCrcString() was also removed from DataType interface - fix generated comment for services - fix permissions for created files and directories Change-Id: If0b7a57e01f1128b5ba574fc5ee13b6a7c6aa6fd Signed-off-by: Ondrej Fabry <ofabry@cisco.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/binapi/acl/acl.ba.go2
-rw-r--r--examples/binapi/af_packet/af_packet.ba.go2
-rw-r--r--examples/binapi/interfaces/interfaces.ba.go2
-rw-r--r--examples/binapi/ip/ip.ba.go2
-rw-r--r--examples/binapi/memclnt/memclnt.ba.go2
-rw-r--r--examples/binapi/memif/memif.ba.go2
-rw-r--r--examples/binapi/vpe/vpe.ba.go2
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)