Changeset 327 for z3wingdbg/trunk/debugger/networkdebugger.py
- Timestamp:
- 08/27/06 22:28:54 (6 years ago)
- Files:
-
- 1 modified
-
z3wingdbg/trunk/debugger/networkdebugger.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
z3wingdbg/trunk/debugger/networkdebugger.py
r325 r327 55 55 'supports one active debugger per process.') 56 56 57 attach port= (attachport is None) and -1 or attachport57 attach = (attachport is None) and -1 or attachport 58 58 59 59 logger = netserver.abstract.CErrStream((LogWrapper(),)) 60 import pdb; pdb.set_trace()61 60 server = netserver.CNetworkServer( 62 host, port, attach port, logger,61 host, port, attach, logger, 63 62 pwfile_path=(netserver.abstract.kPWFilePathUserProfileDir,)) 64 63 65 64 # netserver insists we set a non-empty string, but securechannel 66 65 # ignores it completely when the channel is set to NoEncryption 67 server.SetSecurityInfo(netserver.abstract.securechannel.kNoEncryption, 68 'ignored') 66 if attachport is None: 67 server.SetSecurityInfo( 68 netserver.abstract.securechannel.kNoEncryption, 'ignored') 69 69 70 70 # We set our own sockethook later
