From patchwork Thu Apr 7 21:47:07 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Owen Hilyard X-Patchwork-Id: 109442 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 325C3A050C; Thu, 7 Apr 2022 23:47:55 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 000534285E; Thu, 7 Apr 2022 23:47:32 +0200 (CEST) Received: from mail-pg1-f225.google.com (mail-pg1-f225.google.com [209.85.215.225]) by mails.dpdk.org (Postfix) with ESMTP id F11BF4068B for ; Thu, 7 Apr 2022 23:47:28 +0200 (CEST) Received: by mail-pg1-f225.google.com with SMTP id t13so6104143pgn.8 for ; Thu, 07 Apr 2022 14:47:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=iol.unh.edu; s=unh-iol; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=iWD5Sba03+eoCy5qnnT2+gm7irC/WZv2m93QM8nYajM=; b=ifqetHtCiWkBjxJJtdoVVEETUKPw3AkanpZBSkkdf9QzkxLmwP3G8E4J/rv6GLNkA+ SqB1fCcOt0CmWBN72SV+GZexXVg41ABrxURekv4yucRVg3VVgytkvzCUZvNhpG+1ooz2 Q9mdfbEujAzFL1RGCb3qoQzGr+EShAhZzvslY= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=iWD5Sba03+eoCy5qnnT2+gm7irC/WZv2m93QM8nYajM=; b=21KfZEe/ep2GchWP1cvouno83w5k2X8KAeeDin07bzy8JczWTjBf7MwqS7doEjJuIU rmy18Wkpycc/1fUDklHMuxJO5SyR2HWLU3UqJHUE/7MGIafr7kK2xAtpmKewVg/V5aXK qpSwQurd85L4QS5qoUhmKuGtEAcx186UAHTxVY7uJx90uPgdCKqYZDiqmlw58eJ+LbAk m8flGb3F+BpsGR9rRAEpnhhXDuZuia/qIB6RyO3ZewUcORX5Pv2dpwr+YRVO2YWFcGJD EndOauWu0+Nw3MhPmQ2CM/lOA42DFYUwhp0RlMdjR31DXvjUEa2fhapb7FI1pgnOLCvv CJHw== X-Gm-Message-State: AOAM531MJiG6sJY3G2JmkmhskNX2RwliB8zuprfr8co7ocK28I5O00n0 /RZWZEFQMPwTrtifgVc90N4A4q9KlCrnRqdxartpYhoEoMV1hA== X-Google-Smtp-Source: ABdhPJzoT9FtYch9kMGEY9v1plBgfc7FB5F1mvGOlDJNrBPf+Tz2ezvfBGHw76w4YjY6W/47VvLSxlrg955e X-Received: by 2002:a63:8c2:0:b0:380:bfd8:9e10 with SMTP id 185-20020a6308c2000000b00380bfd89e10mr12806275pgi.422.1649368048265; Thu, 07 Apr 2022 14:47:28 -0700 (PDT) Received: from postal.iol.unh.edu (postal.iol.unh.edu. [132.177.123.84]) by smtp-relay.gmail.com with ESMTPS id k1-20020a170902ce0100b00156bb39fd25sm420789plg.142.2022.04.07.14.47.28 (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128); Thu, 07 Apr 2022 14:47:28 -0700 (PDT) X-Relaying-Domain: iol.unh.edu Received: from iol.unh.edu (unknown [IPv6:2606:4100:3880:1257::105d]) by postal.iol.unh.edu (Postfix) with ESMTP id 4EB3B605183B; Thu, 7 Apr 2022 17:47:27 -0400 (EDT) From: ohilyard@iol.unh.edu To: dev@dpdk.org Cc: Honnappa.Nagarahalli@arm.com, thomas@monjalon.net, Owen Hilyard Subject: [PATCH v1 3/4] app/test-pmd-api: Add protobuf file Date: Thu, 7 Apr 2022 17:47:07 -0400 Message-Id: <20220407214707.29730-4-ohilyard@iol.unh.edu> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220407214707.29730-1-ohilyard@iol.unh.edu> References: <20220407214707.29730-1-ohilyard@iol.unh.edu> MIME-Version: 1.0 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org From: Owen Hilyard This file contains the gRPC definitions for the api as it currently stands. Signed-off-by: Owen Hilyard --- app/test-pmd-api/api.proto | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 app/test-pmd-api/api.proto diff --git a/app/test-pmd-api/api.proto b/app/test-pmd-api/api.proto new file mode 100644 index 0000000000..ba52e379e9 --- /dev/null +++ b/app/test-pmd-api/api.proto @@ -0,0 +1,12 @@ +syntax = "proto3"; +import "google/protobuf/empty.proto"; + +message AclSetupArgs { + repeated string args = 1; +} + +service TestpmdAPI { + rpc acl_setup (AclSetupArgs) returns (google.protobuf.Empty); + rpc acl_search (google.protobuf.Empty) returns (google.protobuf.Empty); + rpc acl_cleanup_config (google.protobuf.Empty) returns (google.protobuf.Empty); +} \ No newline at end of file