diff --git a/incubator/protobuf/models/src/main/proto/net/HostLocationProto.proto b/incubator/protobuf/models/src/main/proto/net/HostLocationProto.proto new file mode 100644 index 0000000000..44961a5145 --- /dev/null +++ b/incubator/protobuf/models/src/main/proto/net/HostLocationProto.proto @@ -0,0 +1,12 @@ +syntax = "proto3"; +option java_package = "org.onosproject.grpc.net.models"; + +import "net/ConnectPointProto.proto"; + +package net; + +// Corresponds to org.onosproject.net.HostLocation. +message HostLocationProto { + net.ConnectPointProto connect_point = 1; + uint64 time = 2; +} \ No newline at end of file