Mono.Posix to Mono.Unix and Mono.Unix.Native

This commit is contained in:
Jim Norman
2006-01-09 23:44:00 +00:00
parent c15c0149e2
commit 81420d16b5
3 changed files with 10 additions and 10 deletions

View File

@@ -1,7 +1,7 @@
using System;
using System.Net;
using System.Net.Sockets;
using Mono.Unix;
using Mono.Unix.Native;
using System.IO;
using System.Text;
using System.Threading;
@@ -20,7 +20,7 @@ namespace sscs.communication
private Socket listeningSocket;
private Socket connectedSocket;
private string socketFileName = "/tmp/.novellCASA";
private EndPoint sockEndPoint;
private Mono.Unix.UnixEndPoint sockEndPoint;
private ManualResetEvent eventVar = null;
@@ -34,7 +34,7 @@ namespace sscs.communication
listeningSocket = new Socket( AddressFamily.Unix,
SocketType.Stream,
ProtocolType.IP );
sockEndPoint = new UnixEndPoint(socketFileName);
sockEndPoint = new Mono.Unix.UnixEndPoint(socketFileName);
eventVar = new ManualResetEvent(true);
}

View File

@@ -1,7 +1,7 @@
using System;
using System.Net;
using System.Net.Sockets;
using Mono.Posix;
using Mono.Unix;
using System.IO;
using System.Text;
using sscs.common;