Home | History | Annotate | Download | only in core

Lines Matching refs:Host

47     // host / ipv4/ ipv6/
48 /** host field
50 protected Host host;
61 host = null;
76 host.encode(buffer);
92 return port == that.port && host.equals(that.host);
95 /** get the Host field
96 * @return host field
98 public Host getHost() {
99 return host;
124 * Set the host member
125 * @param h Host to set
127 public void setHost(Host h) {
128 host = h;
139 /** Return the internet address corresponding to the host.
140 *@throws java.net.UnkownHostException if host name cannot be resolved.
141 *@return the inet address for the host.
144 if (host == null)
147 return host.getInetAddress();
158 if (this.host != null)
159 retval.host = (Host) this.host.clone();
169 return this.host.hashCode() + this.port;