diff --git a/Constants.cs b/Constants.cs
index 8357f96..856280e 100644
--- a/Constants.cs
+++ b/Constants.cs
@@ -248,6 +248,7 @@ namespace fnecore
public const byte NET_FUNC_TRANSFER = 0x90; // Network Transfer Function
public const byte NET_TRANSFER_SUBFUNC_ACTIVITY = 0x01; // Activity Log Transfer
public const byte NET_TRANSFER_SUBFUNC_DIAG = 0x02; // Diagnostic Log Transfer
+ public const byte NET_TRANSFER_SUBFUNC_STATUS = 0x03; // Status Transfer
public const byte NET_FUNC_ANNOUNCE = 0x91; // Network Announce Function
public const byte NET_ANNC_SUBFUNC_GRP_AFFIL = 0x00; // Announce Group Affiliation
diff --git a/FneBase.cs b/FneBase.cs
index 9ca841b..c495944 100644
--- a/FneBase.cs
+++ b/FneBase.cs
@@ -50,6 +50,10 @@ namespace fnecore
/// Conventional Peer
///
public bool ConventionalPeer;
+ ///
+ /// System View
+ ///
+ public bool SysView;
///
/// Software Identifier
diff --git a/FnePeer.cs b/FnePeer.cs
index 36c6c02..bb00e3b 100644
--- a/FnePeer.cs
+++ b/FnePeer.cs
@@ -924,6 +924,7 @@ namespace fnecore
// peer types
jsonWriter.WriteBoolean("externalPeer", info.Details.ExternalPeer);
jsonWriter.WriteBoolean("conventionalPeer", info.Details.ConventionalPeer);
+ jsonWriter.WriteBoolean("sysView", info.Details.SysView);
// system info
{