Changeset 275
- Timestamp:
- 08/10/06 18:17:25 (2 years ago)
- Files:
-
- z3wingdbg/trunk/debugger/configure.zcml (modified) (1 diff)
- z3wingdbg/trunk/debugger/networkdebugger.py (modified) (2 diffs)
- z3wingdbg/trunk/debugger/randomstring.py (deleted)
- z3wingdbg/trunk/debugger/tests/test_randomstring.py (deleted)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
z3wingdbg/trunk/debugger/configure.zcml
r271 r275 17 17 /> 18 18 19 <utility20 component=".randomstring.RandomStringUtility"21 provides=".randomstring.IRandomString"22 />23 24 19 <!-- subscribers --> 25 20 <subscriber z3wingdbg/trunk/debugger/networkdebugger.py
r273 r275 16 16 17 17 """ 18 _data = ''19 20 18 def __init__(self): 21 19 self._logger = logging.getLogger('z3wingdbg.debugger.networkdebugger') … … 58 56 pwfile_path=(netserver.abstract.kPWFilePathUserProfileDir,)) 59 57 60 # Set a random password so we don't need to rely on the existence of61 # a profile dir62 etype = netserver.abstract.securechannel.kNoEncryption63 server.SetSecurityInfo(etype, component.getUtility(IRandomString)())58 # netserver insists we set a non-empty string, but securechannel 59 # ignores it completely when the channel is set to NoEncryption 60 server.SetSecurityInfo(netserver.abstract.securechannel.kNoEncryption, 61 'ignored') 64 62 65 63 # We set our own sockethook later
