summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfcolin2007-02-01 10:02:12 +0000
committerfcolin2007-02-01 10:02:12 +0000
commit4db64b281be9d528a5e91b86e8e470026a11a661 (patch)
tree0eac7acdfcd66e83cad6a56d6db1e03285116550
parent8466f7efa5244091a2d897620dd535c542ed61a3 (diff)
downloadivy-csharp-4db64b281be9d528a5e91b86e8e470026a11a661.zip
ivy-csharp-4db64b281be9d528a5e91b86e8e470026a11a661.tar.gz
ivy-csharp-4db64b281be9d528a5e91b86e8e470026a11a661.tar.bz2
ivy-csharp-4db64b281be9d528a5e91b86e8e470026a11a661.tar.xz
Utilisateur : Fcolin Date : 23/06/06 Heure : 15:30 Archivé dans $/CSharp/Ivy/Ivy Commentaire: modification gestion exception socket (vss 16)
-rw-r--r--CSharp/Ivy/IvyPPC/IvyTCPStreamV3.cs9
1 files changed, 2 insertions, 7 deletions
diff --git a/CSharp/Ivy/IvyPPC/IvyTCPStreamV3.cs b/CSharp/Ivy/IvyPPC/IvyTCPStreamV3.cs
index 8f41f0c..4eef12c 100644
--- a/CSharp/Ivy/IvyPPC/IvyTCPStreamV3.cs
+++ b/CSharp/Ivy/IvyPPC/IvyTCPStreamV3.cs
@@ -55,8 +55,7 @@ namespace IvyBus
private void sendMsg(MessageType msgType, ushort msgId, string msgData)
{
- try
- {
+ // IOException Should be traited upstairs
output.Write((ushort)msgType);
output.Write(' ');
output.Write(msgId);
@@ -64,11 +63,7 @@ namespace IvyBus
output.Write(msgData);
output.Write(MSG_END);
output.Flush();
- }
- catch (IOException ex)
- {
- // Broken pipe
- }
+
}
void IvyProtocol.TokenStartRegexp(ushort port, string appName)
{