aboutsummaryrefslogtreecommitdiffstats
path: root/binapi/pg/pg_rpc.ba.go
diff options
context:
space:
mode:
Diffstat (limited to 'binapi/pg/pg_rpc.ba.go')
-rw-r--r--binapi/pg/pg_rpc.ba.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/binapi/pg/pg_rpc.ba.go b/binapi/pg/pg_rpc.ba.go
index 697f684..1a46cc3 100644
--- a/binapi/pg/pg_rpc.ba.go
+++ b/binapi/pg/pg_rpc.ba.go
@@ -13,6 +13,7 @@ type RPCService interface {
PgCapture(ctx context.Context, in *PgCapture) (*PgCaptureReply, error)
PgCreateInterface(ctx context.Context, in *PgCreateInterface) (*PgCreateInterfaceReply, error)
PgEnableDisable(ctx context.Context, in *PgEnableDisable) (*PgEnableDisableReply, error)
+ PgInterfaceEnableDisableCoalesce(ctx context.Context, in *PgInterfaceEnableDisableCoalesce) (*PgInterfaceEnableDisableCoalesceReply, error)
}
type serviceClient struct {
@@ -49,3 +50,12 @@ func (c *serviceClient) PgEnableDisable(ctx context.Context, in *PgEnableDisable
}
return out, api.RetvalToVPPApiError(out.Retval)
}
+
+func (c *serviceClient) PgInterfaceEnableDisableCoalesce(ctx context.Context, in *PgInterfaceEnableDisableCoalesce) (*PgInterfaceEnableDisableCoalesceReply, error) {
+ out := new(PgInterfaceEnableDisableCoalesceReply)
+ err := c.conn.Invoke(ctx, in, out)
+ if err != nil {
+ return nil, err
+ }
+ return out, api.RetvalToVPPApiError(out.Retval)
+}