summaryrefslogtreecommitdiff
path: root/CSharp/Ivy
diff options
context:
space:
mode:
authorfcolin2007-02-01 09:50:23 +0000
committerfcolin2007-02-01 09:50:23 +0000
commit6a181e965c242866e159bd55dd4d434f7a6cb8bb (patch)
tree2e2e3f1f813fa247f6c6c385a6075c166a84d181 /CSharp/Ivy
parent0eaea31b790c2b1fb9b14e7d25638ecb0c63dcef (diff)
downloadivy-csharp-6a181e965c242866e159bd55dd4d434f7a6cb8bb.zip
ivy-csharp-6a181e965c242866e159bd55dd4d434f7a6cb8bb.tar.gz
ivy-csharp-6a181e965c242866e159bd55dd4d434f7a6cb8bb.tar.bz2
ivy-csharp-6a181e965c242866e159bd55dd4d434f7a6cb8bb.tar.xz
Utilisateur : Fcolin Date : 23/06/06 Heure : 15:30 Archivé dans $/CSharp/Ivy/Ivy Commentaire: modification gestion exception socket (vss 16)
Diffstat (limited to 'CSharp/Ivy')
-rw-r--r--CSharp/Ivy/Ivy/IvyTCPStreamV3.cs9
1 files changed, 2 insertions, 7 deletions
diff --git a/CSharp/Ivy/Ivy/IvyTCPStreamV3.cs b/CSharp/Ivy/Ivy/IvyTCPStreamV3.cs
index 8f41f0c..4eef12c 100644
--- a/CSharp/Ivy/Ivy/IvyTCPStreamV3.cs
+++ b/CSharp/Ivy/Ivy/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)
{