summaryrefslogtreecommitdiffhomepage
path: root/talpid-openvpn-plugin/proto/openvpn_plugin.proto
blob: 07bd9d6f1a2e1e7dd8351a8538d241c55a660342 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
syntax = "proto3";

package talpid_openvpn_plugin;

import "google/protobuf/empty.proto";

service OpenvpnEventProxy {
    rpc Event(EventType) returns (google.protobuf.Empty) {}
}

message EventType {
    int32 event = 1;
    map<string, string> env = 2;
}