(self, port_name=None)
| 447 | """An ALPC server able to create a port, accept connections and send/receive messages""" |
| 448 | |
| 449 | def __init__(self, port_name=None): |
| 450 | self.port_name = None |
| 451 | self.communication_port_list = [] |
| 452 | self.handle = None |
| 453 | if port_name is not None: |
| 454 | self.create_port(port_name) |
| 455 | |
| 456 | def _alpc_port_to_unicode_string(self, name): |
| 457 | return gdef.UNICODE_STRING.from_string(name) |
nothing calls this directly
no test coverage detected