1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

iec60870: fix vectorize

This commit is contained in:
Steffen Vogel 2022-07-27 15:56:32 +02:00
parent 4d27c63157
commit fb7ba7c52b

View file

@ -779,15 +779,17 @@ int SlaveNode::parse(json_t *json, const uuid_t sn_uuid)
int SlaveNode::start()
{
startSlave();
return Node::start();
}
int SlaveNode::stop()
{
stopSlave();
return Node::stop();
}
static char name[] = "iec60870-5-104";
static char description[] = "Provide values as protocol slave";
static NodePlugin<SlaveNode, name, description, (int) NodeFactory::Flags::SUPPORTS_WRITE> p;
static NodePlugin<SlaveNode, name, description, (int) NodeFactory::Flags::SUPPORTS_WRITE, 1> p;