summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfcolin2007-02-01 10:03:10 +0000
committerfcolin2007-02-01 10:03:10 +0000
commit20960719beeccc0456baf7e830cd9382dba6ea61 (patch)
tree726f1ba984e2a2719a03c68ac001772d5376fb7a
parentd255ac4a8f07af8c5a5f91215c5b6f634860ccab (diff)
downloadivy-csharp-20960719beeccc0456baf7e830cd9382dba6ea61.zip
ivy-csharp-20960719beeccc0456baf7e830cd9382dba6ea61.tar.gz
ivy-csharp-20960719beeccc0456baf7e830cd9382dba6ea61.tar.bz2
ivy-csharp-20960719beeccc0456baf7e830cd9382dba6ea61.tar.xz
Utilisateur : Fcolin Date : 24/07/03 Heure : 16:07 Archivé dans $/EScribe/Ivy Commentaire: (vss 3)
-rw-r--r--CSharp/Ivy/IvyPPC/IvyWatcher.cs34
1 files changed, 16 insertions, 18 deletions
diff --git a/CSharp/Ivy/IvyPPC/IvyWatcher.cs b/CSharp/Ivy/IvyPPC/IvyWatcher.cs
index 11861db..305e749 100644
--- a/CSharp/Ivy/IvyPPC/IvyWatcher.cs
+++ b/CSharp/Ivy/IvyPPC/IvyWatcher.cs
@@ -1,20 +1,10 @@
-/// <summary> IvyWatcher, A private Class for the Ivy rendezvous
-/// *
-/// </summary>
-/// <author> François-Régis Colin
-/// </author>
-/// <author> <a href="http://www.tls.cena.fr/products/ivy/">http://www.tls.cena.fr/products/ivy/</a>
+
+/// François-Régis Colin
+/// http://www.tls.cena.fr/products/ivy/
/// *
/// (C) CENA
/// *
-/// right now, the rendez vous is either an UDP socket or a TCP multicast.
-/// The watcher will answer to
-/// each peer advertising its arrival on the bus. The intrinsics of Unix are so
-/// that the broadcast is done using the same socket, which is not a good
-/// thing.
-/// *
-///
-/// </author>
+
namespace IvyBus
{
using System;
@@ -26,7 +16,14 @@ namespace IvyBus
using System.Configuration;
using System.Text;
-
+ /// <summary> IvyWatcher, A private Class for the Ivy rendezvous
+ /// </summary>
+ /// <remarks> right now, the rendez vous is either an UDP socket or a TCP multicast.
+ /// The watcher will answer to
+ /// each peer advertising its arrival on the bus. The intrinsics of Unix are so
+ /// that the broadcast is done using the same socket, which is not a good
+ /// thing.
+ /// </remarks>
internal class IvyWatcher
{
private bool isMulticastAddress = false;
@@ -39,10 +36,11 @@ namespace IvyBus
/// <summary> creates an Ivy watcher
/// </summary>
- /// <param name="bus">the bus
+ /// <param name='bus'>the bus
+ /// </param>
+ /// <param name='domainaddr'>the domain
/// </param>
- /// <param name="net">the domain
- ///
+ /// <param name='port'>the port number
/// </param>
internal IvyWatcher(Ivy bus, String domainaddr, int port)
{