Moving micasa 1.5 trunk to Novell forge.
This commit is contained in:
40
c_micasad/communication/IPCChannel.cs
Normal file
40
c_micasad/communication/IPCChannel.cs
Normal file
@@ -0,0 +1,40 @@
|
||||
using System;
|
||||
using System.Net;
|
||||
using System.Net.Sockets;
|
||||
#if W32
|
||||
using sscs.communication.win.NamedPipes;
|
||||
#endif
|
||||
using sscs.common;
|
||||
namespace sscs.communication
|
||||
{
|
||||
|
||||
abstract class IPCChannel
|
||||
{
|
||||
/* This must check for the platform and return an
|
||||
* appropriate IPCChannel.
|
||||
*/
|
||||
#if LINUX
|
||||
internal static IPCChannel Create(Socket socket)
|
||||
{
|
||||
if(( (int)Environment.OSVersion.Platform) == 128)
|
||||
return (new UnixIPCChannel(socket) );
|
||||
else
|
||||
return null;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
#if W32
|
||||
internal static IPCChannel Create(ServerPipeConnection serverPipe)
|
||||
{
|
||||
return (new WinIPCChannel(serverPipe));
|
||||
}
|
||||
#endif
|
||||
abstract internal UserIdentifier GetIPCChannelUserId();
|
||||
abstract internal int Read(byte[] buf);
|
||||
abstract internal byte[] Read();
|
||||
abstract internal int Write(byte[] buf);
|
||||
abstract internal void Close();
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user