|
8 | 8 | import sys
|
9 | 9 |
|
10 | 10 | import network.asyncore_pollchoose as asyncore
|
11 |
| -import paths |
12 | 11 | from network.advanceddispatcher import AdvancedDispatcher
|
13 | 12 | from queues import receiveDataQueue
|
14 | 13 |
|
@@ -49,9 +48,9 @@ def __init__(self, _=None, sock=None, certfile=None, keyfile=None,
|
49 | 48 | server_side=False, ciphers=sslProtocolCiphers):
|
50 | 49 | self.want_read = self.want_write = True
|
51 | 50 | self.certfile = certfile or os.path.join(
|
52 |
| - paths.codePath(), 'sslkeys', 'cert.pem') |
| 51 | + self._codePath(), 'sslkeys', 'cert.pem') |
53 | 52 | self.keyfile = keyfile or os.path.join(
|
54 |
| - paths.codePath(), 'sslkeys', 'key.pem') |
| 53 | + self._codePath(), 'sslkeys', 'key.pem') |
55 | 54 | self.server_side = server_side
|
56 | 55 | self.ciphers = ciphers
|
57 | 56 | self.tlsStarted = False
|
@@ -218,3 +217,13 @@ def tls_handshake(self):
|
218 | 217 | self.set_state("connection_fully_established")
|
219 | 218 | receiveDataQueue.put(self.destination)
|
220 | 219 | return False
|
| 220 | + |
| 221 | + def _codePath(self): # pylint: disable=no-self-use |
| 222 | + """Returns project dir path""" |
| 223 | + frozen = getattr(sys, 'frozen', None) |
| 224 | + if not frozen: |
| 225 | + return os.path.dirname(os.path.dirname(__file__)) |
| 226 | + return ( |
| 227 | + os.environ.get('RESOURCEPATH') |
| 228 | + # pylint: disable=protected-access, no-member |
| 229 | + if frozen == "macosx_app" else sys._MEIPASS) |
0 commit comments