From df872efa17851722538fdcf8384d6370673a2908 Mon Sep 17 00:00:00 2001 From: Sven Czarnian Date: Thu, 9 Dec 2021 10:27:02 +0100 Subject: [PATCH] extend the protocol to find the sequence on the server --- Communication.proto | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Communication.proto b/Communication.proto index f3edb87..a81e875 100644 --- a/Communication.proto +++ b/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 {