rename node to iec61850-8-1

Signed-off-by: Philipp Jungkamp <philipp.jungkamp@rwth-aachen.de>
This commit is contained in:
Philipp Jungkamp 2023-04-18 11:17:12 +02:00
parent e612e7cebc
commit e619cb8bf1
2 changed files with 4 additions and 12 deletions

View File

@ -1,7 +1,7 @@
nodes = {
goose = {
type = "iec61850-goose"
type = "iec61850-8-1"
out = {
# Ethernet interface to publish on

View File

@ -927,14 +927,6 @@ int GooseNode::stop()
return Node::stop();
}
static char name[] = "iec61850-goose";
static char description[] = "Subscribe to and publish GOOSE messages";
static NodePlugin<
GooseNode,
name,
description,
(int) NodeFactory::Flags::SUPPORTS_READ
| (int) NodeFactory::Flags::SUPPORTS_WRITE
| (int) NodeFactory::Flags::SUPPORTS_POLL,
1
> p;
static char name[] = "iec61850-8-1";
static char description[] = "IEC 61850-8-1 (GOOSE)";
static NodePlugin<GooseNode, name, description, (int) NodeFactory::Flags::SUPPORTS_READ | (int) NodeFactory::Flags::SUPPORTS_WRITE | (int) NodeFactory::Flags::SUPPORTS_POLL, 1> p;