/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to mandos-monitor

  • Committer: Teddy Hogeborn
  • Date: 2021-03-21 19:51:15 UTC
  • Revision ID: teddy@recompile.se-20210321195115-qe6g0fyj1kabwlav
Fix theoretical GnuTLS bug

Fix "NameError: global name '_error_code' is not defined" error if
GNUTLS_E_INTERRUPTED or GNUTLS_E_AGAIN was ever returned from
gnutls_record_send().

* mandos (gnutls._retry_on_error): Import "_error_code" from outer
  class scope to local function scope via a keyword argument.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/python3 -bb
 
1
#!/usr/bin/python3 -bbI
2
2
# -*- mode: python; coding: utf-8 -*-
3
3
#
4
4
# Mandos Monitor - Control and monitor the Mandos server
47
47
import dbus
48
48
 
49
49
if sys.version_info.major == 2:
 
50
    __metaclass__ = type
50
51
    str = unicode
51
52
 
52
53
log = logging.getLogger(os.path.basename(sys.argv[0]))
63
64
domain = "se.recompile"
64
65
server_interface = domain + ".Mandos"
65
66
client_interface = domain + ".Mandos.Client"
66
 
version = "1.8.9"
 
67
version = "1.8.14"
67
68
 
68
69
try:
69
70
    dbus.OBJECT_MANAGER_IFACE
88
89
                             int(fraction*1000000))  # Microseconds
89
90
 
90
91
 
91
 
class MandosClientPropertyCache(object):
 
92
class MandosClientPropertyCache:
92
93
    """This wraps a Mandos Client D-Bus proxy object, caches the
93
94
    properties and calls a hook function when any of them are
94
95
    changed.
406
407
        return ret
407
408
 
408
409
 
409
 
class UserInterface(object):
 
410
class UserInterface:
410
411
    """This is the entire user interface - the whole screen
411
412
    with boxes, lists of client widgets, etc.
412
413
    """