Home | History | Annotate | Download | only in header

Lines Matching defs:host

31 import gov.nist.core.Host;
152 * Get the host, port and transport as a Hop. This is
217 /** set the Host of the Via Header
218 * @param host String to set
220 public void setHost(Host host) {
224 sentBy.setHost(host);
275 * Set the host part of this ViaHeader to the newly supplied <code>host</code>
279 * unexpectedly while parsing the host value.
281 public void setHost(String host) throws ParseException {
285 Host h = new Host(host);
288 throw new NullPointerException(" host parameter is null");
293 * Returns the host part of this ViaHeader.
295 * @return the string value of the host
301 Host host = sentBy.getHost();
302 if (host == null)
305 return host.getHostname();
460 * user, overriding any address derived from the host field.
472 Host host = new Host();
473 host.setAddress(mAddr);
474 NameValue nameValue = new NameValue(ParameterNames.MADDR, host);