Searched defs:scope_id (Results 1 - 2 of 2) sorted by relevance
/openjdk7/jdk/src/share/classes/java/net/ |
H A D | Inet6Address.java | 143 * zone, it is possible to append a zone identifier (or <i>scope_id</i>) to an IPv6 address. 145 * The general format for specifying the <i>scope_id</i> is the following: 146 * <p><blockquote><i>IPv6-address</i>%<i>scope_id</i></blockquote> 148 * The <i>scope_id</i> refers to an interface on the local system, and it can be specified 160 * Note also, that the numeric <i>scope_id</i> can be retrieved from Inet6Address instances returned from the 170 * cached scope_id - for link-local address use only. 182 * scope_id. The scope specified when the object is created. If the object is created 183 * with an interface name, then the scope_id is not determined until the time it is needed. 185 private int scope_id = 0; field in class:Inet6Address 188 * This will be set to true when the scope_id fiel 224 Inet6Address(String hostName, byte addr[], int scope_id) argument 300 getByAddress(String host, byte[] addr, int scope_id) argument [all...] |
/openjdk7/jdk/src/solaris/native/java/net/ |
H A D | net_util_md.c | 527 * and override the scope_id field to use the relevant value for "lo" 671 /* now find the scope_id for "lo" */ 764 /* return the scope_id (interface index) of the 863 * we need to specify the interface in the scope_id (2.4 kernel only) 875 int cached_scope_id = 0, scope_id = 0; local 885 scope_id = (int)(*env)->GetIntField(env,iaObj,ia6_scopeidID); 887 if (scope_id != 0) { 914 * If we have a scope_id use the extended form 922 cached_scope_id : scope_id; 927 /* handle scope_id fo [all...] |
Completed in 34 milliseconds