Fix tinc 1.0.x daemons connecting when ExperimentalProtocol = yes.
This commit is contained in:
parent
f8d94f34fc
commit
2f4ccfe247
1 changed files with 4 additions and 4 deletions
|
@ -110,6 +110,9 @@ bool id_h(connection_t *c, char *request) {
|
|||
return send_ack(c);
|
||||
}
|
||||
|
||||
if(!experimental)
|
||||
c->protocol_minor = 0;
|
||||
|
||||
if(!c->config_tree) {
|
||||
init_configuration(&c->config_tree);
|
||||
|
||||
|
@ -123,13 +126,10 @@ bool id_h(connection_t *c, char *request) {
|
|||
if(!read_ecdsa_public_key(c))
|
||||
return false;
|
||||
} else {
|
||||
if(!ecdsa_active(&c->ecdsa))
|
||||
if(c->protocol_minor && !ecdsa_active(&c->ecdsa))
|
||||
c->protocol_minor = 1;
|
||||
}
|
||||
|
||||
if(!experimental)
|
||||
c->protocol_minor = 0;
|
||||
|
||||
c->allow_request = METAKEY;
|
||||
|
||||
if(c->protocol_minor >= 2)
|
||||
|
|
Loading…
Reference in a new issue