Enable the SPTPS protocol by default.
This commit is contained in:
parent
ee34ac3d61
commit
c83c2d080f
4 changed files with 7 additions and 9 deletions
|
@ -192,6 +192,8 @@ static bool read_ecdsa_private_key(void) {
|
|||
|
||||
if(!fp) {
|
||||
logger(DEBUG_ALWAYS, LOG_ERR, "Error reading ECDSA private key file `%s': %s", fname, strerror(errno));
|
||||
if(errno == ENOENT)
|
||||
logger(DEBUG_ALWAYS, LOG_INFO, "Create an ECDSA keypair with `tinc -n %s generate-ecdsa-keys'.", netname ?: ".");
|
||||
free(fname);
|
||||
return false;
|
||||
}
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
|
||||
bool tunnelserver = false;
|
||||
bool strictsubnets = false;
|
||||
bool experimental = false;
|
||||
bool experimental = true;
|
||||
|
||||
/* Jumptable for the request handlers */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue