Lines Matching refs:hostname
61 protected final String hostname;
78 * @param hostname the hostname (IP or DNS name)
85 public HttpHost(final String hostname, int port, final String scheme) {
87 if (hostname == null) {
90 this.hostname = hostname;
91 this.lcHostname = hostname.toLowerCase(Locale.ENGLISH);
103 * @param hostname the hostname (IP or DNS name)
107 public HttpHost(final String hostname, int port) {
108 this(hostname, port, null);
114 * @param hostname the hostname (IP or DNS name)
116 public HttpHost(final String hostname) {
117 this(hostname, -1, null);
126 this(httphost.hostname, httphost.port, httphost.schemeName);
135 return this.hostname;
165 buffer.append(this.hostname);
181 buffer.append(this.hostname);