mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
use villas.binary as default format for most node types
This commit is contained in:
parent
83ca82204c
commit
377af00af4
4 changed files with 4 additions and 4 deletions
|
@ -130,7 +130,7 @@ int mqtt_parse(struct node *n, json_t *cfg)
|
|||
struct mqtt *m = (struct mqtt *) n->_vd;
|
||||
|
||||
const char *host;
|
||||
const char *format = "villas.human";
|
||||
const char *format = "villas.binary";
|
||||
const char *publish = NULL;
|
||||
const char *subscribe = NULL;
|
||||
const char *username = NULL;
|
||||
|
|
|
@ -82,7 +82,7 @@ int nanomsg_parse(struct node *n, json_t *cfg)
|
|||
int ret;
|
||||
struct nanomsg *m = (struct nanomsg *) n->_vd;
|
||||
|
||||
const char *format = "villas.human";
|
||||
const char *format = "villas.binary";
|
||||
|
||||
json_error_t err;
|
||||
|
||||
|
|
|
@ -73,7 +73,7 @@ int test_rtt_parse(struct node *n, json_t *cfg)
|
|||
int ret;
|
||||
struct test_rtt *t = (struct test_rtt *) n->_vd;
|
||||
|
||||
const char *format = "villas.human";
|
||||
const char *format = "villas.binary";
|
||||
const char *output = ".";
|
||||
const char *prefix = node_name_short(n);
|
||||
|
||||
|
|
|
@ -100,7 +100,7 @@ int zeromq_parse(struct node *n, json_t *cfg)
|
|||
const char *type = NULL;
|
||||
const char *in_filter = NULL;
|
||||
const char *out_filter = NULL;
|
||||
const char *format = "villas.human";
|
||||
const char *format = "villas.binary";
|
||||
|
||||
size_t i;
|
||||
json_t *json_pub = NULL;
|
||||
|
|
Loading…
Add table
Reference in a new issue