Package org.cybergarage.upnp.ssdp
Class SSDP
- java.lang.Object
-
- org.cybergarage.upnp.ssdp.SSDP
-
public class SSDP extends Object
This class defines constant value related to SSDP.
All the values defined here are complaint to the UPnP Standard- Version:
- 1.0
- Author:
- Satoshi "skonno" Konno, Stefano "Kismet" Lenzi
-
-
Field Summary
Fields Modifier and Type Field Description static String
ADDRESS
Default IPv4 multicast address for SSDP messagesstatic int
DEFAULT_MSEARCH_MX
static String
IPV6_ADMINISTRATIVE_ADDRESS
static String
IPV6_GLOBAL_ADDRESS
static String
IPV6_LINK_LOCAL_ADDRESS
static String
IPV6_SITE_LOCAL_ADDRESS
static String
IPV6_SUBNET_ADDRESS
static int
PORT
Default destination port for SSDP multicast messagesstatic int
RECV_MESSAGE_BUFSIZE
-
Constructor Summary
Constructors Constructor Description SSDP()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static String
getIPv6Address()
static int
getLeaseTime(String cacheCont)
static void
setIPv6Address(String addr)
-
-
-
Field Detail
-
PORT
public static final int PORT
Default destination port for SSDP multicast messages- See Also:
- Constant Field Values
-
ADDRESS
public static final String ADDRESS
Default IPv4 multicast address for SSDP messages- See Also:
- Constant Field Values
-
IPV6_LINK_LOCAL_ADDRESS
public static final String IPV6_LINK_LOCAL_ADDRESS
- See Also:
- Constant Field Values
-
IPV6_SUBNET_ADDRESS
public static final String IPV6_SUBNET_ADDRESS
- See Also:
- Constant Field Values
-
IPV6_ADMINISTRATIVE_ADDRESS
public static final String IPV6_ADMINISTRATIVE_ADDRESS
- See Also:
- Constant Field Values
-
IPV6_SITE_LOCAL_ADDRESS
public static final String IPV6_SITE_LOCAL_ADDRESS
- See Also:
- Constant Field Values
-
IPV6_GLOBAL_ADDRESS
public static final String IPV6_GLOBAL_ADDRESS
- See Also:
- Constant Field Values
-
DEFAULT_MSEARCH_MX
public static final int DEFAULT_MSEARCH_MX
- See Also:
- Constant Field Values
-
RECV_MESSAGE_BUFSIZE
public static final int RECV_MESSAGE_BUFSIZE
- See Also:
- Constant Field Values
-
-