diff options
Diffstat (limited to 'binapi/urpf/urpf_rpc.ba.go')
-rw-r--r-- | binapi/urpf/urpf_rpc.ba.go | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/binapi/urpf/urpf_rpc.ba.go b/binapi/urpf/urpf_rpc.ba.go new file mode 100644 index 0000000..92441b1 --- /dev/null +++ b/binapi/urpf/urpf_rpc.ba.go @@ -0,0 +1,30 @@ +// Code generated by GoVPP's binapi-generator. DO NOT EDIT. + +package urpf + +import ( + "context" + api "git.fd.io/govpp.git/api" +) + +// RPCService defines RPC service urpf. +type RPCService interface { + UrpfUpdate(ctx context.Context, in *UrpfUpdate) (*UrpfUpdateReply, error) +} + +type serviceClient struct { + conn api.Connection +} + +func NewServiceClient(conn api.Connection) RPCService { + return &serviceClient{conn} +} + +func (c *serviceClient) UrpfUpdate(ctx context.Context, in *UrpfUpdate) (*UrpfUpdateReply, error) { + out := new(UrpfUpdateReply) + err := c.conn.Invoke(ctx, in, out) + if err != nil { + return nil, err + } + return out, nil +} |