blob: 42f5994195020819a98deb27c775cd9b4606a7fb [file] [log] [blame]
Stephane Barbarie35595062018-02-08 08:34:39 -05001syntax = "proto3";
2
3option go_package = "github.com/opencord/voltha/protos/go/ponsim";
4
5package ponsim;
6
7import "google/protobuf/empty.proto";
8
9service PonSimCommon {
10 rpc ProcessData (stream IncomingData) returns (google.protobuf.Empty) {}
11}
12
13message IncomingData {
14 string id = 1;
15 string address = 2;
16 int32 port = 3;
17 bytes payload = 4;
18
19}