From 9dba9b8092b38b22c7ad273732c415f99ab1968c Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 09:54:44 +0000 Subject: Utilisateur : Fcolin Date : 14/01/05 Heure : 19:01 Archivé dans $/CSharp/Ivy Commentaire: remove TcpClient & MyTCpClient use directly Socket (vss 24) --- CSharp/Ivy/IvyPPC/Ivy.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'CSharp/Ivy/IvyPPC/Ivy.cs') diff --git a/CSharp/Ivy/IvyPPC/Ivy.cs b/CSharp/Ivy/IvyPPC/Ivy.cs index 7d648e0..3340d9b 100644 --- a/CSharp/Ivy/IvyPPC/Ivy.cs +++ b/CSharp/Ivy/IvyPPC/Ivy.cs @@ -539,7 +539,7 @@ namespace IvyBus // /////////////////////////////////////////////////////////////////: - internal void addClient(MyTcpClient socket) + internal void addClient(Socket socket) { if (stopped) return ; @@ -661,8 +661,7 @@ namespace IvyBus { try { - Socket sock = app.AcceptSocket(); - MyTcpClient socket = new MyTcpClient(sock); + Socket socket = app.AcceptSocket(); if (stopped) break; // early disconnexion -- cgit v1.1