コード例 #1
0
    public Proxy()
    {
        OnRecv += (object s, ServerMsgEventArgs e) =>
        {
            Debug.Log("Proxy received " + e.Len + " bytes");
            p.Send(e.Buffer, e.Len);
        };

        p.Start("127.0.0.1", 33334);
    }