MCPcopy Create free account
hub / github.com/ELMERIKH/PyinMemoryPE / __init__

Method __init__

windows/alpc.py:449–454  ·  view source on GitHub ↗
(self, port_name=None)

Source from the content-addressed store, hash-verified

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)

Callers

nothing calls this directly

Calls 1

create_portMethod · 0.95

Tested by

no test coverage detected