From 384558f201316b2cc9dbc4e6197b7d6ee3b9eab3 Mon Sep 17 00:00:00 2001 From: Gilbert Montague Date: Mon, 11 Aug 2025 16:11:21 -0700 Subject: [PATCH] Feature: removed unused NodeSocket --- api/node.proto | 10 ---------- api/status.proto | 3 ++- 2 files changed, 2 insertions(+), 11 deletions(-) diff --git a/api/node.proto b/api/node.proto index 45de534..e9a1b72 100644 --- a/api/node.proto +++ b/api/node.proto @@ -2,7 +2,6 @@ syntax = "proto3"; package synapse; -import "api/datatype.proto"; import "api/nodes/broadband_source.proto"; import "api/nodes/electrical_stimulation.proto"; import "api/nodes/optical_stimulation.proto"; @@ -70,12 +69,3 @@ message NodeConnection { uint32 src_node_id = 1; uint32 dst_node_id = 2; } - -message NodeSocket { - uint32 node_id = 1; - string bind = 2; - DataType data_type = 3; - NodeType type = 4; - string label = 5; - repeated uint32 shape = 6; -} \ No newline at end of file diff --git a/api/status.proto b/api/status.proto index 8a3f48a..3a73793 100644 --- a/api/status.proto +++ b/api/status.proto @@ -41,7 +41,8 @@ message Status { string message = 1; StatusCode code = 2; DeviceState state = 3; - repeated NodeSocket sockets = 4; + // repeated NodeSocket sockets = 4; + reserved 4; DevicePower power = 5; DeviceStorage storage = 6; SignalChainStatus signal_chain = 7;