search for: subnet_t

Displaying 4 results from an estimated 4 matches for "subnet_t".

2015 Apr 06
2
Failover Subnet
> If your question is "can I assign the same subnet to multiple tinc > nodes on the same network", the answer is yes (for both 1.0 and 1.1). Yes exactly. > currently it tries to estimate which one is closest by measuring the > time it took to establish metaconnections along the edges to the node, Shure? I remember alphabetic order (host name) in tinc 1.0. Is it the same
2015 Apr 06
0
Failover Subnet
...rrently it tries to estimate which one is closest by measuring the >> time it took to establish metaconnections along the edges to the node, > > Shure? I remember alphabetic order (host name) in tinc 1.0. Actually, yes you're right, my bad, I was confused between edge_t::weight and subnet_t::weight while looking at the code. The edge weight is only used when routing messages over the metagraph, not when sending packets. You are correct that node name lexicographical order is used as priority order as a last resort. However, you can add a weight to your Subnet configuration to customi...
2007 Jul 21
2
tincctl patches
(Second try to send this. I wonder if the first one gotten eaten by a spam filter; I'll link to patches instead of attaching them.) Here are the tincctl patches I've been working on. They apply to http://www.tinc-vpn.org/svn/tinc/branches/1.1@1545. I intend to commit them once the crypto stuff's fixed. Since they're basically done, I'm emailing them now for review and in case
2010 Sep 03
1
[PATCH] New '-o' option to configure server or hosts from command line
...xtern void init_configuration(avl_tree_t **); extern void exit_configuration(avl_tree_t **); @@ -54,6 +56,7 @@ extern bool get_config_string(const config_t *, char **); extern bool get_config_address(const config_t *, struct addrinfo **); extern bool get_config_subnet(const config_t *, struct subnet_t **); +extern config_t *parse_config_line(char *, const char *, int); extern bool read_config_file(avl_tree_t *, const char *); extern bool read_server_config(void); extern FILE *ask_and_open(const char *, const char *); diff --git a/src/connection.c b/src/connection.c index 6229e79..36c0fdb...