From 82b06c956f4a1c4a91344462583df5cecb72f410 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 09:42:45 +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/Ivy/Ivy.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/CSharp/Ivy/Ivy/Ivy.cs b/CSharp/Ivy/Ivy/Ivy.cs index 7d648e0..3340d9b 100644 --- a/CSharp/Ivy/Ivy/Ivy.cs +++ b/CSharp/Ivy/Ivy/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