Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/bundles/ch.ethz.iks.slp/standalone/inclusions/ch/ethz/iks/slp/ServiceLocationManager.java')
-rw-r--r--protocols/bundles/ch.ethz.iks.slp/standalone/inclusions/ch/ethz/iks/slp/ServiceLocationManager.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/protocols/bundles/ch.ethz.iks.slp/standalone/inclusions/ch/ethz/iks/slp/ServiceLocationManager.java b/protocols/bundles/ch.ethz.iks.slp/standalone/inclusions/ch/ethz/iks/slp/ServiceLocationManager.java
index 648285248..515cf2708 100644
--- a/protocols/bundles/ch.ethz.iks.slp/standalone/inclusions/ch/ethz/iks/slp/ServiceLocationManager.java
+++ b/protocols/bundles/ch.ethz.iks.slp/standalone/inclusions/ch/ethz/iks/slp/ServiceLocationManager.java
@@ -9,6 +9,8 @@
* Contributors:
* Jan S. Rellermeyer - initial API and implementation
* Markus Alexander Kuppe - enhancements and bug fixes
+ * Md.Jamal MohiUddin (Ubiquitous Computing, C-DAC Hyderabad) - IPv6 support
+ * P Sowjanya (Ubiquitous Computing, C-DAC Hyderabad) - IPv6 support
*
*****************************************************************************/
package ch.ethz.iks.slp;
@@ -65,6 +67,7 @@ public final class ServiceLocationManager extends SLPCore {
init();
if (locator != null) {
try {
+ //TODO::We have to Initialize the Multicast Socket for UA also for receiving DA Advt Messages
return (Locator) locator.newInstance(new Object[] { locale });
} catch (Exception e) {
throw new ServiceLocationException(
@@ -90,7 +93,6 @@ public final class ServiceLocationManager extends SLPCore {
public static Advertiser getAdvertiser(final Locale locale)
throws ServiceLocationException {
init();
- SLPCore.initMulticastSocket();
if (advertiser != null) {
try {
return (Advertiser) advertiser

Back to the top