Skip to content

Commit ab3ffce

Browse files
committed
#655 Update to latest jmdns
* fixed
1 parent 9ea6359 commit ab3ffce

File tree

12 files changed

+32
-34
lines changed

12 files changed

+32
-34
lines changed

io.sloeber.application/.classpath

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
3+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
34
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
4-
<classpathentry kind="src" path="src"/>
5-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
6-
<classpathentry kind="output" path="bin"/>
5+
<classpathentry kind="src" path="src"/>
6+
<classpathentry kind="output" path="bin"/>
77
</classpath>

io.sloeber.core/.classpath

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<classpath>
3-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
4-
<attributes>
5-
<attribute name="maven.pomderived" value="true"/>
6-
</attributes>
7-
</classpathentry>
8-
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
9-
<classpathentry kind="src" path="src"/>
10-
<classpathentry exported="true" kind="lib" path="lib/jsch-0.1.50.jar"/>
11-
<classpathentry exported="true" kind="lib" path="lib/jmdns-3.4.1.jar"/>
12-
<classpathentry exported="true" kind="lib" path="lib/jssc-2.8.0.jar"/>
13-
<classpathentry kind="output" path="bin"/>
14-
</classpath>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
4+
<attributes>
5+
<attribute name="maven.pomderived" value="true"/>
6+
</attributes>
7+
</classpathentry>
8+
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
9+
<classpathentry kind="src" path="src"/>
10+
<classpathentry exported="true" kind="lib" path="lib/jsch-0.1.50.jar"/>
11+
<classpathentry exported="true" kind="lib" path="lib/jssc-2.8.0.jar"/>
12+
<classpathentry exported="true" kind="lib" path="lib/jmdns-3.5.3.jar"/>
13+
<classpathentry kind="output" path="bin"/>
14+
</classpath>

io.sloeber.core/.project

-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@
33
<name>io.sloeber.core</name>
44
<comment></comment>
55
<projects>
6-
<project>io.sloeber.core.common</project>
7-
<project>io.sloeber.avreclipse.core</project>
8-
<project>io.sloeber.avreclipse.core.managedbuildsystem</project>
9-
<project>io.sloeber.avreclipse.ui</project>
106
</projects>
117
<buildSpec>
128
<buildCommand>

io.sloeber.core/META-INF/MANIFEST.MF

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ Import-Package: io.sloeber.core.common,
1919
Bundle-Activator: io.sloeber.core.Activator
2020
Bundle-ClassPath: .,
2121
lib/jsch-0.1.50.jar,
22-
lib/jmdns-3.4.1.jar,
23-
lib/jssc-2.8.0.jar
22+
lib/jssc-2.8.0.jar,
23+
lib/jmdns-3.5.3.jar
2424
Require-Bundle: org.eclipse.cdt.managedbuilder.core,
2525
org.eclipse.core.filesystem,
2626
org.eclipse.cdt.core,

io.sloeber.core/build.properties

+6-5
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ bin.includes = .,\
99
config/,\
1010
OSGI-INF/,\
1111
src/io/sloeber/core/templates/sketch.ino,\
12-
lib/
13-
jars.compile.order = .,\
14-
library.jar
12+
lib/jmdns-3.5.3.jar,\
13+
lib/jsch-0.1.50.jar,\
14+
lib/jssc-2.8.0.jar
15+
jars.compile.order = .
1516
jars.extra.classpath = lib/jsch-0.1.50.jar,\
16-
lib/jmdns-3.4.1.jar
17-
src.includes = bin/
17+
lib/jmdns-3.5.3.jar,\
18+
lib/jssc-2.8.0.jar
-204 KB
Binary file not shown.
-483 KB
Binary file not shown.

io.sloeber.core/lib/jmdns-3.4.1.jar

-200 KB
Binary file not shown.

io.sloeber.core/lib/jmdns-3.5.3.jar

209 KB
Binary file not shown.

io.sloeber.core/src/cc/arduino/packages/discoverers/ArduinoDNSTaskStarter.java

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package cc.arduino.packages.discoverers;
22

3+
import java.net.InetAddress;
34
import java.util.Timer;
45

56
import javax.jmdns.impl.DNSIncoming;
@@ -87,10 +88,10 @@ public void startServiceResolver(String type) {
8788
delegate.startServiceResolver(type);
8889
}
8990

90-
@Override
91-
public void startResponder(DNSIncoming in, int port) {
92-
delegate.startResponder(in, port);
93-
}
91+
@Override
92+
public void startResponder(DNSIncoming pIncoming, InetAddress pAddress, int pPort) {
93+
delegate.startResponder(pIncoming,pAddress, pPort);
94+
}
9495
};
9596
}
9697
}

io.sloeber.product/.classpath

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
3+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
34
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
45
<classpathentry kind="src" path="src"/>
5-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
6-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
76
<classpathentry kind="output" path="bin"/>
87
</classpath>

io.sloeber.tests/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
/target/
2+
/bin/

0 commit comments

Comments
 (0)