Home | History | Annotate | Download | only in krb5

Lines Matching defs:hostlen

356  * return a readable representation of `host' in `hostname, hostlen'
361 char *hostname, size_t hostlen)
371 snprintf(hostname, hostlen, "%s%s%s", proto, host->hostname, portstr);
545 size_t hostlen;
560 hostlen = strlen(host);
561 hi = calloc(1, sizeof(*hi) + hostlen);
570 memmove(hi->hostname, host, hostlen);
571 hi->hostname[hostlen] = '\0';
592 size_t hostlen;
600 hostlen = strlen(host);
602 hi = calloc(1, sizeof(*hi) + hostlen);
611 memmove(hi->hostname, host, hostlen);
612 hi->hostname[hostlen] = '\0';
1025 * in `hostname' (or length `hostlen)
1032 size_t hostlen)
1039 return krb5_krbhst_format_string(context, host, hostname, hostlen);