HomeSort by: relevance | last modified time | path
    Searched defs:hostend (Results 1 - 2 of 2) sorted by relevancy

  /src/external/bsd/openldap/dist/contrib/ldapc++/src/
LDAPUrl.cpp 198 std::string::size_type hostend, portstart=0; local
205 hostend = m_urlString.find(']', startpos);
206 if ( hostend == std::string::npos ){
209 portstart = hostend + 1;
211 hostend = m_urlString.find(':', startpos);
212 if ( hostend == std::string::npos || portstart > pos ) {
213 hostend = pos;
215 portstart = hostend;
217 std::string host = m_urlString.substr(startpos, hostend - startpos);
LDAPUrl.cpp 198 std::string::size_type hostend, portstart=0; local
205 hostend = m_urlString.find(']', startpos);
206 if ( hostend == std::string::npos ){
209 portstart = hostend + 1;
211 hostend = m_urlString.find(':', startpos);
212 if ( hostend == std::string::npos || portstart > pos ) {
213 hostend = pos;
215 portstart = hostend;
217 std::string host = m_urlString.substr(startpos, hostend - startpos);

Completed in 29 milliseconds