diff options
author | fcolin | 2007-02-01 10:02:40 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 10:02:40 +0000 |
commit | ef6c11f73f7d20e03d208616a0e19bef710bd2b1 (patch) | |
tree | 838c29de321f0603a5af9f1b33d18a90c5ff79f7 /CSharp/Ivy/IvyPPC/IvyUDPStream.cs | |
parent | cafedd9c0b86e50dac3e04afbc8ed27e22871cf9 (diff) | |
download | ivy-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)
Diffstat (limited to 'CSharp/Ivy/IvyPPC/IvyUDPStream.cs')
-rw-r--r-- | CSharp/Ivy/IvyPPC/IvyUDPStream.cs | 1 |
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 );
}
|