|
|
@ -14,8 +14,8 @@
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
|
|
import socket
|
|
|
|
from urllib.request import urlopen
|
|
|
|
import subprocess
|
|
|
|
from urllib.error import URLError
|
|
|
|
|
|
|
|
|
|
|
|
from gi.repository import Gtk, GLib, Adw
|
|
|
|
from gi.repository import Gtk, GLib, Adw
|
|
|
|
|
|
|
|
|
|
|
@ -52,22 +52,10 @@ class VanillaDefaultConnCheck(Adw.Bin):
|
|
|
|
def __start_conn_check(self):
|
|
|
|
def __start_conn_check(self):
|
|
|
|
def async_fn():
|
|
|
|
def async_fn():
|
|
|
|
try:
|
|
|
|
try:
|
|
|
|
host = socket.gethostbyname("8.8.8.8")
|
|
|
|
urlopen("http://google.com", timeout=1)
|
|
|
|
s = socket.create_connection((host, 53), 2)
|
|
|
|
|
|
|
|
s.close()
|
|
|
|
|
|
|
|
return True
|
|
|
|
return True
|
|
|
|
except:
|
|
|
|
except URLError:
|
|
|
|
try:
|
|
|
|
return False
|
|
|
|
host = '2001:4860:4860::8888'
|
|
|
|
|
|
|
|
s = socket.socket(socket.AF_INET6, socket.SOCK_STREAM)
|
|
|
|
|
|
|
|
s.settimeout(2)
|
|
|
|
|
|
|
|
s.connect((host, 53))
|
|
|
|
|
|
|
|
s.close()
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
except:
|
|
|
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def callback(res, *args):
|
|
|
|
def callback(res, *args):
|
|
|
|
if res:
|
|
|
|
if res:
|
|
|
|