summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfcolin2007-02-01 10:02:40 +0000
committerfcolin2007-02-01 10:02:40 +0000
commitef6c11f73f7d20e03d208616a0e19bef710bd2b1 (patch)
tree838c29de321f0603a5af9f1b33d18a90c5ff79f7
parentcafedd9c0b86e50dac3e04afbc8ed27e22871cf9 (diff)
downloadivy-csharp-ef6c11f73f7d20e03d208616a0e19bef710bd2b1.zip
ivy-csharp-ef6c11f73f7d20e03d208616a0e19bef710bd2b1.tar.gz
ivy-csharp-ef6c11f73f7d20e03d208616a0e19bef710bd2b1.tar.bz2
ivy-csharp-ef6c11f73f7d20e03d208616a0e19bef710bd2b1.tar.xz
Utilisateur : Fcolin Date : 17/10/06 Heure : 18:36 Archivé dans $/CSharp/Ivy/Ivy Commentaire: modification debug et correction bug stream UDP pas reseté (vss 3)
-rw-r--r--CSharp/Ivy/IvyPPC/IvyUDPStream.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/CSharp/Ivy/IvyPPC/IvyUDPStream.cs b/CSharp/Ivy/IvyPPC/IvyUDPStream.cs
index 3654297..0e3f517 100644
--- a/CSharp/Ivy/IvyPPC/IvyUDPStream.cs
+++ b/CSharp/Ivy/IvyPPC/IvyUDPStream.cs
@@ -47,6 +47,7 @@ namespace IvyBus
remote = (IPEndPoint)tempRemoteEP;
in_stream.Position = 0;
in_stream.SetLength(len);
+ in_stream.Seek(0, SeekOrigin.Begin);
//Call Deserialization
Deserialize( out version, out port, out appId, out appName );
}