summaryrefslogtreecommitdiff
path: root/CSharp/Ivy
diff options
context:
space:
mode:
authorfcolin2007-02-01 09:50:51 +0000
committerfcolin2007-02-01 09:50:51 +0000
commit861b315707fb78914b8612ab4c7a3bef88775a7b (patch)
tree2c96b591562d3806b759244e792f825ef630786b /CSharp/Ivy
parent4384000c46fb2f58bc197899b6a799ed29725cb7 (diff)
downloadivy-csharp-861b315707fb78914b8612ab4c7a3bef88775a7b.zip
ivy-csharp-861b315707fb78914b8612ab4c7a3bef88775a7b.tar.gz
ivy-csharp-861b315707fb78914b8612ab4c7a3bef88775a7b.tar.bz2
ivy-csharp-861b315707fb78914b8612ab4c7a3bef88775a7b.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)
Diffstat (limited to 'CSharp/Ivy')
-rw-r--r--CSharp/Ivy/Ivy/IvyUDPStream.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/CSharp/Ivy/Ivy/IvyUDPStream.cs b/CSharp/Ivy/Ivy/IvyUDPStream.cs
index 3654297..0e3f517 100644
--- a/CSharp/Ivy/Ivy/IvyUDPStream.cs
+++ b/CSharp/Ivy/Ivy/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 );
}