113 data = types.SimpleNamespace( |
113 data = types.SimpleNamespace( |
114 name="debug_client", |
114 name="debug_client", |
115 address=address, |
115 address=address, |
116 handler=self.__serviceDbgClientConnection, |
116 handler=self.__serviceDbgClientConnection, |
117 ) |
117 ) |
118 self.__server.getSelector().register(connection, selectors.EVENT_READ, data=data) |
118 self.__server.getSelector().register( |
|
119 connection, selectors.EVENT_READ, data=data |
|
120 ) |
119 |
121 |
120 def __serviceDbgClientConnection(self, key): |
122 def __serviceDbgClientConnection(self, key): |
121 """ |
123 """ |
122 Private method to service the debug client connection. |
124 Private method to service the debug client connection. |
123 |
125 |