public void Init(int id) { m_id = id; m_port = IPCConfig.GetIPCInfo(id).port; Init(); }
private void SendMessage(int dst, byte[] bytes, int len) { int dstPort = IPCConfig.GetIPCInfo(dst).port; IPEndPoint ep = IPUtils.GetHostEndPoint("127.0.0.1", dstPort); m_SystemSocket.SendTo(bytes, 0, len, SocketFlags.None, ep); }