Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
James Lowden
OpenLDAP
Commits
8f98dc65
Commit
8f98dc65
authored
17 years ago
by
Ralf Haferkamp
Browse files
Options
Downloads
Patches
Plain Diff
Allow IPv6 addresses
parent
adee18e1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
contrib/ldapc++/src/LDAPUrl.cpp
+38
-16
38 additions, 16 deletions
contrib/ldapc++/src/LDAPUrl.cpp
contrib/ldapc++/src/LDAPUrl.h
+1
-1
1 addition, 1 deletion
contrib/ldapc++/src/LDAPUrl.h
with
39 additions
and
17 deletions
contrib/ldapc++/src/LDAPUrl.cpp
+
38
−
16
View file @
8f98dc65
...
...
@@ -6,6 +6,7 @@
#include
"LDAPUrl.h"
#include
<sstream>
#include
<iomanip>
#include
"debug.h"
using
namespace
std
;
...
...
@@ -193,26 +194,39 @@ void LDAPUrl::parseUrl()
// no hostname and port
startpos
++
;
}
else
{
std
::
string
::
size_type
hostend
;
std
::
string
::
size_type
portstart
;
pos
=
m_urlString
.
find
(
'/'
,
startpos
);
std
::
string
hostport
=
m_urlString
.
substr
(
startpos
,
pos
-
startpos
);
DEBUG
(
LDAP_DEBUG_TRACE
,
" hostport: <"
<<
hostport
<<
">"
<<
std
::
endl
);
std
::
string
::
size_type
portstart
=
m_urlString
.
find
(
':'
,
startpos
);
if
(
portstart
==
std
::
string
::
npos
||
portstart
>
pos
)
{
percentDecode
(
hostport
,
m_Host
);
// IPv6 Address?
if
(
m_urlString
[
startpos
]
==
'['
)
{
// skip
startpos
++
;
hostend
=
m_urlString
.
find
(
']'
,
startpos
);
if
(
hostend
==
std
::
string
::
npos
){
throw
LDAPUrlException
(
LDAPUrlException
::
INVALID_URL
);
}
portstart
=
hostend
+
1
;
}
else
{
hostend
=
m_urlString
.
find
(
':'
,
startpos
);
if
(
hostend
==
std
::
string
::
npos
||
portstart
>
pos
)
{
hostend
=
pos
;
}
portstart
=
hostend
;
}
std
::
string
host
=
m_urlString
.
substr
(
startpos
,
hostend
-
startpos
);
DEBUG
(
LDAP_DEBUG_TRACE
,
" host: <"
<<
host
<<
">"
<<
std
::
endl
);
percentDecode
(
host
,
m_Host
);
if
(
portstart
>=
m_urlString
.
length
()
||
portstart
>=
pos
)
{
if
(
m_Scheme
==
"ldap"
||
m_Scheme
==
"cldap"
)
{
m_Port
=
LDAP_DEFAULT_PORT
;
}
else
if
(
m_Scheme
==
"ldaps"
)
{
m_Port
=
LDAPS_DEFAULT_PORT
;
}
}
else
{
std
::
string
tmp
=
m_urlString
.
substr
(
startpos
,
portstart
-
startpos
);
percentDecode
(
tmp
,
m_Host
);
DEBUG
(
LDAP_DEBUG_TRACE
,
"Host: <"
<<
m_Host
<<
">"
<<
std
::
endl
);
std
::
string
port
=
m_urlString
.
substr
(
portstart
+
1
,
pos
-
portstart
-
1
);
(
pos
==
std
::
string
::
npos
?
pos
:
pos
-
portstart
-
1
)
)
;
if
(
port
.
length
()
>
0
)
{
std
::
istringstream
i
(
port
);
i
>>
m_Port
;
...
...
@@ -328,8 +342,15 @@ void LDAPUrl::components2Url() const
{
std
::
ostringstream
url
;
std
::
string
encoded
=
""
;
this
->
percentEncode
(
m_Host
,
encoded
,
PCT_ENCFLAG_SLASH
);
url
<<
m_Scheme
<<
"://"
<<
encoded
;
url
<<
m_Scheme
<<
"://"
;
// IPv6 ?
if
(
m_Host
.
find
(
':'
,
0
)
!=
std
::
string
::
npos
)
{
url
<<
"["
<<
this
->
percentEncode
(
m_Host
,
encoded
)
<<
"]"
;
}
else
{
url
<<
this
->
percentEncode
(
m_Host
,
encoded
,
PCT_ENCFLAG_SLASH
);
}
if
(
m_Port
!=
0
)
{
url
<<
":"
<<
m_Port
;
}
...
...
@@ -394,7 +415,7 @@ void LDAPUrl::components2Url() const
}
void
LDAPUrl
::
percentEncode
(
const
std
::
string
&
src
,
std
::
string
&
LDAPUrl
::
percentEncode
(
const
std
::
string
&
src
,
std
::
string
&
dest
,
int
flags
)
const
{
...
...
@@ -454,12 +475,13 @@ void LDAPUrl::percentEncode( const std::string &src,
break
;
}
if
(
escape
)
{
o
<<
"%"
<<
(
int
)(
unsigned
char
)
*
i
;
o
<<
"%"
<<
std
::
setw
(
2
)
<<
std
::
setfill
(
'0'
)
<<
(
int
)(
unsigned
char
)
*
i
;
}
else
{
o
.
put
(
*
i
);
}
}
dest
=
o
.
str
();
return
dest
;
}
const
code2string_s
LDAPUrlException
::
code2string
[]
=
{
...
...
This diff is collapsed.
Click to expand it.
contrib/ldapc++/src/LDAPUrl.h
+
1
−
1
View file @
8f98dc65
...
...
@@ -138,7 +138,7 @@ class LDAPUrl{
* @param dest The encoded result string
* @param flags
*/
void
percentEncode
(
const
std
::
string
&
src
,
std
::
string
&
percentEncode
(
const
std
::
string
&
src
,
std
::
string
&
dest
,
int
flags
=
0
)
const
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment