diff options
Diffstat (limited to 'src/IvyDaemon.java')
-rw-r--r-- | src/IvyDaemon.java | 8 |
1 files changed, 6 insertions, 2 deletions
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 <a href="http://www.tls.cena.fr/products/ivy/">http://www.tls.cena.fr/products/ivy/</a> + * + * 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); |