search for: get_config_bool

Displaying 3 results from an estimated 3 matches for "get_config_bool".

2010 Sep 17
1
friend of a friend type darknets
...ther node, are dropped. diff -Nur tinc-1.0.13/src/net_setup.c tinc-1.0.13-patched/src/net_setup.c --- tinc-1.0.13/src/net_setup.c 2010-04-11 04:34:31.000000000 +0200 +++ tinc-1.0.13-patched/src/net_setup.c 2010-09-17 23:38:05.591481035 +0200 @@ -337,6 +337,10 @@ /* Check some options */ + get_config_bool(lookup_config(config_tree, "FriendOfAFriend"), &foaf); + if(foaf) + myself->options |= OPTION_INDIRECT; + if(get_config_bool(lookup_config(config_tree, "IndirectData"), &choice) && choice) myself->options |= OPTION_INDIRECT; diff -Nu...
2010 Nov 13
3
[PATCH 1/4] Experimental IFF_ONE_QUEUE support for Linux
...if(!get_config_string(lookup_config(config_tree, "Device"), &device)) device = xstrdup(DEFAULT_DEVICE); @@ -84,6 +85,12 @@ bool setup_device(void) { device_info = "Linux tun/tap device (tap mode)"; } +#ifdef IFF_ONE_QUEUE + /* Set IFF_ONE_QUEUE flag... */ + if(get_config_bool(lookup_config(config_tree, "IffOneQueue"), &t1q) && t1q) + ifr.ifr_flags |= IFF_ONE_QUEUE; +#endif + if(iface) strncpy(ifr.ifr_name, iface, IFNAMSIZ); -- 1.7.3.2
2007 Mar 28
2
[PATCH 2/3] User-space grant table device - main driver
A character device for accessing (in user-space) pages that have been granted by other domains. Signed-off-by: Derek Murray <Derek.Murray@cl.cam.ac.uk> _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel