|
eab8f1cad7
|
api: use C++ queues
|
2018-12-02 03:20:51 +01:00 |
|
|
993bcdb378
|
improve logging messages
|
2018-12-02 03:18:09 +01:00 |
|
|
0c1427dcbe
|
cosmetics
|
2018-12-02 03:17:12 +01:00 |
|
|
3a45ae3b3d
|
remove unused variable
|
2018-12-02 03:11:32 +01:00 |
|
|
d6a0b27fc8
|
websocket: now supported in C++ web code
|
2018-12-02 03:11:32 +01:00 |
|
|
40265ffca8
|
api: fix new node action in C++ code
|
2018-12-02 03:11:32 +01:00 |
|
|
dc350c83f1
|
fix format string for size_t argument
|
2018-12-02 03:11:32 +01:00 |
|
|
3674669424
|
fix duplicate use of same identifier
|
2018-12-02 03:11:32 +01:00 |
|
|
71c6d5f9e5
|
fix assertion in _init() about invalid state
|
2018-12-02 03:11:32 +01:00 |
|
|
a63b15609a
|
do not throw dynamically allocated exceptions
|
2018-12-02 03:11:32 +01:00 |
|
|
caf3e45960
|
workaround for C-compatability
|
2018-12-02 03:11:31 +01:00 |
|
Marvin Klimke
|
b6161e06b1
|
[WIP] further work on write function of RTP node
add proper warning and error outputs
fix rtp_write to write data to interface (not verified)
cleanup of rtp socket outstanding
|
2018-12-01 12:31:12 +01:00 |
|
|
47023f0c3e
|
add missing files
|
2018-11-30 21:40:48 +01:00 |
|
|
9bda0fdfd5
|
api: check version
|
2018-11-30 21:40:36 +01:00 |
|
|
5370bb5a73
|
improve logging messages
|
2018-11-30 21:40:36 +01:00 |
|
|
f004b4bf3f
|
api: avoid segfault due to gone sessions
|
2018-11-30 21:39:55 +01:00 |
|
|
e3b522c39b
|
socket: use pre-allocated buffers to avoid dynamic allocations and syscalls in critical path
|
2018-11-30 21:39:55 +01:00 |
|
|
64f0bcb160
|
remove superfluous log output
|
2018-11-30 21:38:19 +01:00 |
|
|
a0afecd50c
|
api: use std::filesystem for creating unix socket dir
|
2018-11-30 21:38:19 +01:00 |
|
|
1ad92dca28
|
super_node: fix nullptr dereference if no config was loaded
|
2018-11-30 21:37:52 +01:00 |
|
|
25ff130377
|
remove SuperNode::init()
|
2018-11-30 21:37:52 +01:00 |
|
|
30c15be7ae
|
json: properly handle EOF in json format
|
2018-11-30 21:37:52 +01:00 |
|
|
31cf7329e4
|
fix state of uninitialized lists
|
2018-11-30 21:37:52 +01:00 |
|
|
2db4a32abd
|
fix more warnings about uninitialized variables
|
2018-11-30 21:37:52 +01:00 |
|
|
88295bb7cd
|
stats: only collect stats of required meta-data is available
|
2018-11-30 21:37:52 +01:00 |
|
|
70cc94b5c7
|
refactor: warn() => warning() due to name collision with libc
|
2018-11-30 21:37:52 +01:00 |
|
|
39320dbf56
|
websocket: temporary fixes for C++ port
|
2018-11-30 21:36:26 +01:00 |
|
|
1a7341e86a
|
web: fix errors caused by merge
|
2018-11-30 21:36:26 +01:00 |
|
|
96b05e32cb
|
misc changes
|
2018-11-30 21:36:26 +01:00 |
|
|
707affc027
|
cpp: update unit tests
|
2018-11-30 21:36:26 +01:00 |
|
|
6f7386afbf
|
fix missing include
|
2018-11-30 21:35:14 +01:00 |
|
|
3c11acb8b5
|
cpp: ported web and api
|
2018-11-30 21:33:56 +01:00 |
|
|
7f4e69ea4b
|
refactor: NULL -> nullptr
|
2018-11-30 21:00:53 +01:00 |
|
|
677f8b2aa2
|
socket: fix compilation without libnl3
|
2018-11-30 21:00:53 +01:00 |
|
|
d72c5604e8
|
cmake: several improvments to the build system
|
2018-11-30 21:00:53 +01:00 |
|
|
30576ba7ad
|
refactoring: move config to villas/node/config.h
|
2018-11-30 21:00:53 +01:00 |
|
|
32ffab7632
|
config_helper: allow json_load_cli() to be called with constant arguments
|
2018-11-30 20:58:15 +01:00 |
|
|
0709235502
|
log: adjust to new log constructor signature
|
2018-11-30 20:58:15 +01:00 |
|
|
833729cb57
|
added new VILLAScommon submodule
|
2018-11-30 20:58:15 +01:00 |
|
|
708ea877f1
|
moved code to new VILLAScommon repo
|
2018-11-30 20:58:15 +01:00 |
|
|
987a59a5aa
|
cpp: ported SuperNode
|
2018-11-30 20:46:59 +01:00 |
|
|
e33e1904b8
|
refactor: warning() => warn()
|
2018-11-30 20:38:31 +01:00 |
|
|
c8dbc42b6b
|
remove global variable
|
2018-11-30 20:38:10 +01:00 |
|
|
06ef762ad9
|
socket: use pre-allocated buffers to avoid dynamic allocations and syscalls in critical path
|
2018-11-30 20:33:11 +01:00 |
|
Marvin Klimke
|
2ea4b65b58
|
[WIP] first approach to rtp_write function.
|
2018-11-28 18:12:06 +01:00 |
|
Marvin Klimke
|
5d9ad4e9e0
|
add placeholder rtp receive handler
|
2018-11-28 06:11:13 +01:00 |
|
|
f60bf3f0f5
|
api: return state as string
|
2018-11-27 18:06:35 +01:00 |
|
|
1ac9d306ad
|
node: do not emit data when paused
|
2018-11-23 21:00:20 +02:00 |
|
|
437cfb646d
|
file: add restart callback
|
2018-11-23 21:00:20 +02:00 |
|
|
7f5b3c235f
|
api: added new actions for controlling a node
|
2018-11-23 21:00:20 +02:00 |
|