Moving micasa 1.5 trunk to Novell forge.
This commit is contained in:
18
c_micasad/lib/communication/IClientChannel.cs
Normal file
18
c_micasad/lib/communication/IClientChannel.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user