2019-03-22 13:49:07 +01:00
|
|
|
# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
|
2023-08-31 11:25:01 +02:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2019-03-22 13:49:07 +01:00
|
|
|
nodes = {
|
2024-02-29 21:36:38 +01:00
|
|
|
nanomsg_node = {
|
|
|
|
type = "nanomsg",
|
2019-03-22 13:49:07 +01:00
|
|
|
|
2024-02-29 21:36:38 +01:00
|
|
|
out = {
|
|
|
|
endpoints = [
|
2024-04-09 14:17:35 +02:00
|
|
|
# TCP socket
|
|
|
|
"tcp://*:12000",
|
|
|
|
|
|
|
|
# Interprocess communication
|
|
|
|
"ipc:///tmp/test.ipc",
|
|
|
|
|
|
|
|
# Inprocess communication
|
|
|
|
"inproc://test"
|
2024-02-29 21:36:38 +01:00
|
|
|
],
|
|
|
|
}
|
|
|
|
in = {
|
|
|
|
endpoints = [
|
|
|
|
"tcp://127.0.0.1:12000",
|
|
|
|
"ipc:///tmp/test.ipc",
|
|
|
|
"inproc://test"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
2019-03-22 13:49:07 +01:00
|
|
|
}
|