From d0868e366bc8f8d9b7ed1d1c5a80cac0de9dc956 Mon Sep 17 00:00:00 2001 From: Kevin Hester Date: Fri, 11 Dec 2020 08:32:16 +0800 Subject: [PATCH] Add def for the REPLY_APP --- portnums.proto | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/portnums.proto b/portnums.proto index 25612b1..964be66 100644 --- a/portnums.proto +++ b/portnums.proto @@ -65,6 +65,11 @@ enum PortNum { */ NODEINFO_APP = 4; + /** Provides a 'ping' service that replies to any packet it receives. Also this serves as a + small example plugin. + */ + REPLY_APP = 32; + /** Private applications should use portnums >= 256. To simplify initial development and testing you can use "PRIVATE_APP" in your code without needing to rebuild protobuf files (via bin/regin_protos.sh) */ PRIVATE_APP = 256;