diff options
Diffstat (limited to 'CSharp/Ivy/IvyPPC')
-rw-r--r-- | CSharp/Ivy/IvyPPC/IvyWatcher.cs | 34 |
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)
{
|