|
|
@ -101,6 +101,7 @@ jconf_t *read_jconf(const char * file) |
|
|
|
{ |
|
|
|
|
|
|
|
static jconf_t conf; |
|
|
|
memset(&conf, 0, sizeof(conf)); |
|
|
|
|
|
|
|
char *buf; |
|
|
|
json_value *obj; |
|
|
@ -177,6 +178,10 @@ jconf_t *read_jconf(const char * file) |
|
|
|
conf.nofile = value->u.integer; |
|
|
|
} else if (strcmp(name, "nameserver") == 0) { |
|
|
|
conf.nameserver = to_string(value); |
|
|
|
} else if (strcmp(name, "bitcoin_address") == 0) { |
|
|
|
conf.bitcoin_address = to_string(value); |
|
|
|
} else if (strcmp(name, "bitcoin_privkey") == 0) { |
|
|
|
conf.bitcoin_privkey = to_string(value); |
|
|
|
} |
|
|
|
} |
|
|
|
} else { |
|
|
|