Home | History | Annotate | Download | only in http

Lines Matching refs:hostname

56     protected final String hostname;
73 * @param hostname the hostname (IP or DNS name)
80 public HttpHost(final String hostname, int port, final String scheme) {
82 if (hostname == null) {
85 this.hostname = hostname;
86 this.lcHostname = hostname.toLowerCase(Locale.ENGLISH);
98 * @param hostname the hostname (IP or DNS name)
102 public HttpHost(final String hostname, int port) {
103 this(hostname, port, null);
109 * @param hostname the hostname (IP or DNS name)
111 public HttpHost(final String hostname) {
112 this(hostname, -1, null);
121 this(httphost.hostname, httphost.port, httphost.schemeName);
130 return this.hostname;
160 buffer.append(this.hostname);
176 buffer.append(this.hostname);