소스 검색

extend the protocol to find the sequence on the server

Sven Czarnian 3 년 전
부모
커밋
df872efa17
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      Communication.proto

+ 2 - 1
Communication.proto

@@ -6,7 +6,8 @@ import "AircraftSchedule.proto";
 import "BaseTypes.proto";
 
 message AircraftUpdate {
-    repeated AircraftReport reports = 1; // Contains all updated aircrafts
+    string                  airport = 1; // Contains the updated airport
+    repeated AircraftReport reports = 2; // Contains all updated aircrafts
 }
 
 message AircraftSequence {