Lines Matching refs:broadcast
30 * IP address, a subnet mask and a broadcast address when the address is
39 private Inet4Address broadcast = null;
62 * Only IPv4 networks have broadcast address therefore, in the case
65 * @return the <code>InetAddress</code> representing the broadcast
66 * address or <code>null</code> if there is no broadcast address.
69 return broadcast;
93 * address if the InetAddress, the prefix length and the broadcast are
108 if ( !(broadcast == null ? cmp.broadcast == null : broadcast.equals(cmp.broadcast)) )
121 return address.hashCode() + ((broadcast != null) ? broadcast.hashCode() : 0) + maskLength;
126 * string returned is of the form: InetAddress / prefix length [ broadcast address ].
131 return address + "/" + maskLength + " [" + broadcast + "]";