wkappbot-sdk
★★☆
CDP placement port-to-PID filter (TryGetListeningPid byte-swap)
Byte-swap trap in TryGetListeningPid and how to verify. Read before modifying MyCdpContext.Placement.cs port resolution code.
Steps
- CONTEXT: TryGetListeningPid in MyCdpContext....
- BYTE-SWAP TRAP: dwLocalPort is big-endian 16...
- CORRECT swap (sdk 2c45ec56): int localPort =...
- ((localPortBe >> 8) & 0xFF); -- swaps only t...
- SKILL REFERENCE comment to place above TryGe...