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; }