1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2025-07-31 12:41:08 +00:00

tunnel.py fix socket creation problem

This commit is contained in:
catborise 2020-07-14 15:10:03 +03:00
parent f23e6b000f
commit b6cb81c3bc
2 changed files with 6 additions and 15 deletions

View file

@ -22,7 +22,7 @@ django.setup()
import re
import socket
from six.moves import http_cookies as Cookie
from webvirtcloud.settings import WS_PORT, WS_HOST, WS_CERT
from webvirtcloud.settings import WS_PUBLIC_PORT, WS_HOST, WS_CERT
from vrtManager.connection import CONN_SSH, CONN_SOCKET
from console.tunnel import Tunnel
from optparse import OptionParser
@ -55,7 +55,7 @@ parser.add_option("-p",
dest="port",
action="store",
help="Listen port",
default=WS_PORT or 6080)
default=WS_PUBLIC_PORT or 6080)
parser.add_option("-c",
"--cert",
@ -145,13 +145,6 @@ class CompatibilityMixIn(object):
if 'token' in cookie:
token = cookie['token'].value
# cookie = Cookie.SimpleCookie()
# cookie.load(self.headers.getheader('cookie'))
# if 'token' not in cookie:
# self.msg('No token cookie found !')
# return False
# token = cookie['token'].value
(connhost, connport, connuser, conntype, console_host, console_port,
console_socket) = get_connection_infos(token)
@ -213,8 +206,7 @@ class CompatibilityMixIn(object):
if tsock:
tsock.shutdown(socket.SHUT_RDWR)
tsock.close()
if tunnel:
tunnel.close()
tunnel.close()
raise