to be pointed out clearly.
* release as patch 20100114-1
+
+Tue Feb 16 14:43:28 CET 2010
+
+ * options.c: print "IPv6 payload patch" release date in "--version"
+
+ * tun.c: undo change to init_tun() (moving "bool tun" and call to
+ "is_tun_p2p()" further up) - it wasn't needed and breaks "make check"
+
+ * git stuff: rebase on David Sommerseth's openvpn-testing git tree
+
+ * release as patch 20100216-1
silently ignore DAD?
Or accept-and-forward iff (multicast && client2client)?
handle NS/NA
+
+13.) from Martin List-Petersen:
+
+ One thing, and I guess this requires modifications in
+ network-manager-openvpn: It also works, BUT ignores "push
+ route-ipv6-gateway" and "push route-ipv6 ...." (obviously routes pushed
+ from the server) entirely.
+
+14.) from ##openvpn-discussion:
+
+ new features should be #ifdef'ed
+
+ (check whether this is feasible at all)
#ifdef ENABLE_EUREPHIA
" [eurephia]"
#endif
+ " [IPv6 payload 20100216-1]"
" built on " __DATE__
;
{
struct gc_arena gc = gc_new ();
struct tuntap *tt;
- bool tun;
ALLOC_OBJ (tt, struct tuntap);
clear_tuntap (tt);
tt->type = dev_type_enum (dev, dev_type);
tt->topology = topology;
- /*
- * We only handle TUN/TAP devices here, not --dev null devices.
- */
- tun = is_tun_p2p (tt);
-
if (ifconfig_local_parm && ifconfig_remote_netmask_parm)
{
+ bool tun = false;
const char *ifconfig_local = NULL;
const char *ifconfig_remote_netmask = NULL;
const char *ifconfig_broadcast = NULL;
+ /*
+ * We only handle TUN/TAP devices here, not --dev null devices.
+ */
+ tun = is_tun_p2p (tt);
+
/*
* Convert arguments to binary IPv4 addresses.
*/