]> git.meshlink.io Git - meshlink/blobdiff - gui/tinc-gui
Started the implementation of route_meshlink that at the moment routes packets based...
[meshlink] / gui / tinc-gui
index 64b738ebaee196076f3dea2a3633b7417fb176f1..f1a9bbfcaabd1a9a2d0ce512addac0603b166bb5 100755 (executable)
@@ -1,7 +1,8 @@
 #!/usr/bin/python
 
 # tinc-gui -- GUI for controlling a running tincd
-# Copyright (C) 2009-2012 Guus Sliepen <guus@tinc-vpn.org>
+# Copyright (C) 2009-2014 Guus Sliepen <guus@tinc-vpn.org>
+#                    2014 Dennis Joachimsthaler <dennis@efjot.de>
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -130,7 +131,11 @@ class VPN:
                else:
                        # otherwise connect via TCP
                        print(unixfile + " does not exist.");
-                       s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
+                       if ':' in info[2]:
+                               af = socket.AF_INET6
+                       else:
+                               af = socket.AF_INET
+                       s = socket.socket(af, socket.SOCK_STREAM)
                        s.connect((info[2], int(info[4])))
 
                self.sf = s.makefile()
@@ -234,9 +239,15 @@ class VPN:
 
        def __init__(self, netname = None, pidfile = None):
                if platform.system() == 'Windows':
+                       sam = _winreg.KEY_READ
+                       if platform.machine().endswith('64'):
+                               sam = sam | _winreg.KEY_WOW64_64KEY
                        try:
                                reg = _winreg.ConnectRegistry(None, _winreg.HKEY_LOCAL_MACHINE)
-                               key = _winreg.OpenKey(reg, "SOFTWARE\\tinc")
+                               try:
+                                       key = _winreg.OpenKey(reg, "SOFTWARE\\tinc", 0, sam)
+                               except WindowsError:
+                                       key = _winreg.OpenKey(reg, "SOFTWARE\\Wow6432Node\\tinc", 0, sam)
                                VPN.confdir = _winreg.QueryValue(key, None)
                        except WindowsError:
                                pass