So, recently I was trying make a communication between my filter and the DLL file.
Simply, I used the known SroPP library's packet handling, which receives S->C only afaik.
And I tried to send a unknown packet like 0xA987 from my filter to the client, so when the DLL receive file receive that 0xA987, it will do some work.
While trying to send the packet from my filter to the client:
Code:
Packet packet = new Packet(0xA987);
packet.WriteInt32(1);
user.m_LocalSecurity.Send(packet);
user.Send(false);
Have anyone got an idea about this?






