Searched refs:uriHeader (Results 1 - 1 of 1) sorted by relevance

/external/nist-sip/java/gov/nist/core/
H A DHostNameParser.java212 * Tries to determine whether the address in <tt>uriHeader</tt> could be
215 * @param uriHeader the string (supposedly the value of a URI header) that
218 * @return true if the host part of <tt>uriHeader</tt> could be an IPv6
221 private boolean isIPv6Address(String uriHeader) argument
225 int hostEnd = uriHeader.indexOf(Lexer.QUESTION);
229 int semiColonIndex = uriHeader.indexOf(Lexer.SEMICOLON);
237 hostEnd = uriHeader.length();
240 String host = uriHeader.substring(0, hostEnd);

Completed in 136 milliseconds