Lines Matching refs:temps
540 temps[64]; /* Temporary string for address */ in httpAddrString() local
543 …if (getnameinfo(&addr->addr, (socklen_t)httpAddrLength(addr), temps, sizeof(temps), NULL, 0, NI_NU… in httpAddrString()
554 else if ((sptr = strchr(temps, '%')) != NULL) in httpAddrString()
570 for (sptr = temps, i = 0; i < 4 && addr->ipv6.sin6_addr.s6_addr32[i]; i ++) in httpAddrString()
574 snprintf(sptr, sizeof(temps) - (size_t)(sptr - temps), "%s%x", prefix, (temp >> 16) & 0xffff); in httpAddrString()
582 snprintf(sptr, sizeof(temps) - (size_t)(sptr - temps), "%s%x", prefix, temp); in httpAddrString()
594 snprintf(sptr, sizeof(temps) - (size_t)(sptr - temps), "%s:", prefix); in httpAddrString()
605 … snprintf(sptr, sizeof(temps) - (size_t)(sptr - temps), "%s%x", prefix, (temp >> 16) & 0xffff); in httpAddrString()
609 snprintf(sptr, sizeof(temps) - (size_t)(sptr - temps), "%s%x", prefix, temp & 0xffff); in httpAddrString()
619 strlcpy(temps, "::", sizeof(temps)); in httpAddrString()
627 strlcpy(sptr, "::", sizeof(temps) - (size_t)(sptr - temps)); in httpAddrString()
636 snprintf(s, (size_t)slen, "[v1.%s]", temps); in httpAddrString()