public string handle      = "";    //接続先の名前

    public Channel(TcpNetworkServerManager sManager, TcpClient client)
    {
        Debug.Log("Channel Start");
        this.serverManager = sManager;
        this.tcpClient     = client;
        this.stream        = this.tcpClient.GetStream();
    }
 // Use this for initialization
 void Start()
 {
     tcpManager = new TcpNetworkServerManager(28000);
 }