From a4b200202c81f802b5430dc4405080111b3982a4 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 10:02:18 +0000 Subject: Utilisateur : Fcolin Date : 30/11/05 Heure : 10:27 Archivé dans $/CSharp/Ivy Commentaire: (vss 3) --- CSharp/Ivy/IvyPPC/IvyTCPStreamV4.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'CSharp/Ivy/IvyPPC/IvyTCPStreamV4.cs') diff --git a/CSharp/Ivy/IvyPPC/IvyTCPStreamV4.cs b/CSharp/Ivy/IvyPPC/IvyTCPStreamV4.cs index e765ab5..d146632 100644 --- a/CSharp/Ivy/IvyPPC/IvyTCPStreamV4.cs +++ b/CSharp/Ivy/IvyPPC/IvyTCPStreamV4.cs @@ -10,11 +10,11 @@ namespace IvyBus /// /// Description résumée de IvyStream. /// - public class IvyStream : NetworkStream + public class IvyTCPStream : NetworkStream { BinaryReader input; BinaryWriter output; - public IvyStream(Socket socket) : base( socket, true ) + public IvyTCPStream(Socket socket) : base( socket, true ) { input = new BinaryReader( new BufferedStream(this),Encoding.ASCII); output = new BinaryWriter( new BufferedStream(this), Encoding.ASCII); -- cgit v1.1