github.com/hashicorp/vault/sdk@v0.11.0/helper/pluginutil/multiplexing.proto (about)

     1  // Copyright (c) HashiCorp, Inc.
     2  // SPDX-License-Identifier: MPL-2.0
     3  
     4  syntax = "proto3";
     5  package pluginutil.multiplexing;
     6  
     7  option go_package = "github.com/hashicorp/vault/sdk/helper/pluginutil";
     8  
     9  message MultiplexingSupportRequest {}
    10  message MultiplexingSupportResponse {
    11    bool supported = 1;
    12  }
    13  
    14  service PluginMultiplexing {
    15    rpc MultiplexingSupport(MultiplexingSupportRequest) returns (MultiplexingSupportResponse);
    16  }