Lines Matching defs:in
6 * You may not use this file except in compliance with the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
32 #include <netinet/in.h>
49 escape_colon(char *in, char *out) {
51 for (i = 0, j = 0; in[i] != '\0'; i++) {
52 if (in[i] == ':') {
54 out[j++] = in[i];
56 out[j++] = in[i];
93 * Escape ':' in IPV6.
94 * The value is stored in LDAP directory without escape charaters.
151 * The IPV6 addresses are saved in the directory without '\'s.
152 * So don't need to escape colons in IPV6 addresses.