using System;
using System.Net;
using System.Net.Sockets;

//using sscs.communication.win.NamedPipes;


namespace Novell.CASA.MiCasa.Communication
{
	public interface ClientChannel
	{		
		void Open();
		int Read(byte[] buf);	
		byte[] Read();	
		int Write(byte[] buf);
		void Close();		
	}
}