diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2011-05-27 11:42:38 +0200 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2011-06-02 14:07:45 -0400 |
commit | f8202685c80ca49734d554999062c58f4f470c37 (patch) | |
tree | 59a3024059e369eed552a0b44bfbb2b911a249d3 /src | |
parent | bfdcff2b28f399d236b592d13663c7283d6eac2c (diff) | |
download | sssd-f8202685c80ca49734d554999062c58f4f470c37.tar.gz sssd-f8202685c80ca49734d554999062c58f4f470c37.tar.xz sssd-f8202685c80ca49734d554999062c58f4f470c37.zip |
Add a utility function to escape IPv6 address for use in URIs
Diffstat (limited to 'src')
-rw-r--r-- | src/util/sss_ldap.c | 8 | ||||
-rw-r--r-- | src/util/sss_ldap.h | 3 |
2 files changed, 11 insertions, 0 deletions
diff --git a/src/util/sss_ldap.c b/src/util/sss_ldap.c index a4d73a8aa..49d989b62 100644 --- a/src/util/sss_ldap.c +++ b/src/util/sss_ldap.c @@ -18,6 +18,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include <stdlib.h> +#include <netdb.h> #include "config.h" @@ -86,3 +87,10 @@ int sss_ldap_control_create(const char *oid, int iscritical, return LDAP_SUCCESS; #endif } + +inline const char * +sss_ldap_escape_ip_address(TALLOC_CTX *mem_ctx, int family, const char *addr) +{ + return family == AF_INET6 ? talloc_asprintf(mem_ctx, "[%s]", addr) : + talloc_strdup(mem_ctx, addr); +} diff --git a/src/util/sss_ldap.h b/src/util/sss_ldap.h index b77a2031d..16c22641e 100644 --- a/src/util/sss_ldap.h +++ b/src/util/sss_ldap.h @@ -46,4 +46,7 @@ int sss_ldap_control_create(const char *oid, int iscritical, struct berval *value, int dupval, LDAPControl **ctrlp); +inline const char * +sss_ldap_escape_ip_address(TALLOC_CTX *mem_ctx, int family, const char *addr); + #endif /* __SSS_LDAP_H__ */ |