Let tincctl parse and format dumps.

At the moment it just reproduces the old format.
This commit is contained in:
Guus Sliepen 2012-09-26 23:18:32 +02:00
parent 9ade39b7d5
commit d6388d782e
7 changed files with 75 additions and 27 deletions

View file

@ -574,8 +574,11 @@ static bool setup_myself(void) {
myself = new_node();
myself->connection = new_connection();
myself->hostname = xstrdup("MYSELF");
myself->connection->hostname = xstrdup("MYSELF");
if(!get_config_string(lookup_config(config_tree, "Port"), &myport))
myport = xstrdup("655");
xasprintf(&myself->hostname, "MYSELF port %s", myport);
myself->connection->hostname = xstrdup(myself->hostname);
myself->connection->options = 0;
myself->connection->protocol_major = PROT_MAJOR;
@ -603,9 +606,6 @@ static bool setup_myself(void) {
if(!read_rsa_private_key())
return false;
if(!get_config_string(lookup_config(config_tree, "Port"), &myport))
myport = xstrdup("655");
if(!atoi(myport)) {
struct addrinfo *ai = str2addrinfo("localhost", myport, SOCK_DGRAM);
sockaddr_t sa;