From dce2265029eb1b3c3656fe7c756964e22d619126 Mon Sep 17 00:00:00 2001 From: jestin Date: Wed, 5 Jun 2002 16:21:44 +0000 Subject: Bug fixes, see changelog for details --- src/IvyDaemon.java | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/IvyDaemon.java') diff --git a/src/IvyDaemon.java b/src/IvyDaemon.java index 09367c6..db4623e 100644 --- a/src/IvyDaemon.java +++ b/src/IvyDaemon.java @@ -17,8 +17,12 @@ import gnu.getopt.Getopt; * * @author Yannick Jestin * @author http://www.tls.cena.fr/products/ivy/ + * + * changelog: + * 1.0.12 + * - class goes public access ! */ -class IvyDaemon implements Runnable { +public class IvyDaemon implements Runnable { public static int DEFAULT_SERVICE_PORT = 3456 ; ServerSocket serviceSocket; @@ -51,7 +55,7 @@ class IvyDaemon implements Runnable { IvyDaemon d = new IvyDaemon(domain,servicePort); } - IvyDaemon(String domain,int servicePort) { + public IvyDaemon(String domain,int servicePort) { // connexion to the Bus try { bus=new Ivy("IvyDaemon","IvyDaemon ready",null); -- cgit v1.1