X-Git-Url: https://gerrit.fd.io/r/gitweb?p=govpp.git;a=blobdiff_plain;f=internal%2Ftestbinapi%2Fbinapi2001%2Flldp%2Flldp_rpc.ba.go;fp=internal%2Ftestbinapi%2Fbinapi2001%2Flldp%2Flldp_rpc.ba.go;h=0000000000000000000000000000000000000000;hp=d9fdbc5d3afa2b527f463f5e11059d5ff8db0399;hb=e9567fa8c853dda16c54afbd2ba99b7263fa37f1;hpb=4102c72bce694babd94a481b1201d33895a6f9c5 diff --git a/internal/testbinapi/binapi2001/lldp/lldp_rpc.ba.go b/internal/testbinapi/binapi2001/lldp/lldp_rpc.ba.go deleted file mode 100644 index d9fdbc5..0000000 --- a/internal/testbinapi/binapi2001/lldp/lldp_rpc.ba.go +++ /dev/null @@ -1,41 +0,0 @@ -// Code generated by GoVPP's binapi-generator. DO NOT EDIT. - -package lldp - -import ( - "context" - - api "git.fd.io/govpp.git/api" -) - -// RPCService defines RPC service lldp. -type RPCService interface { - LldpConfig(ctx context.Context, in *LldpConfig) (*LldpConfigReply, error) - SwInterfaceSetLldp(ctx context.Context, in *SwInterfaceSetLldp) (*SwInterfaceSetLldpReply, error) -} - -type serviceClient struct { - conn api.Connection -} - -func NewServiceClient(conn api.Connection) RPCService { - return &serviceClient{conn} -} - -func (c *serviceClient) LldpConfig(ctx context.Context, in *LldpConfig) (*LldpConfigReply, error) { - out := new(LldpConfigReply) - err := c.conn.Invoke(ctx, in, out) - if err != nil { - return nil, err - } - return out, api.RetvalToVPPApiError(out.Retval) -} - -func (c *serviceClient) SwInterfaceSetLldp(ctx context.Context, in *SwInterfaceSetLldp) (*SwInterfaceSetLldpReply, error) { - out := new(SwInterfaceSetLldpReply) - err := c.conn.Invoke(ctx, in, out) - if err != nil { - return nil, err - } - return out, api.RetvalToVPPApiError(out.Retval) -}