OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:hostname_len
(Results
1 - 2
of
2
) sorted by relevancy
/src/external/mit/libuv/dist/src/unix/
getaddrinfo.c
145
size_t
hostname_len
;
local
172
hostname_len
= hostname ? strlen(hostname) + 1 : 0;
175
buf = uv__malloc(
hostname_len
+ service_len + hints_len);
203
req->hostname = memcpy(buf + len, hostname,
hostname_len
);
/src/external/apache2/mDNSResponder/dist/ServiceRegistration/
srp-client.c
969
size_t
hostname_len
;
local
976
hostname_len
= strlen(chosen_hostname);
978
if (
hostname_len
+ 7 > DNS_MAX_LABEL_SIZE) {
979
hostname_len
= DNS_MAX_LABEL_SIZE - 7;
981
conflict_hostname = malloc(
hostname_len
+ 7);
992
memcpy(conflict_hostname, chosen_hostname,
hostname_len
);
993
snprintf(conflict_hostname +
hostname_len
, 7, " %d", client->hostname_rename_number);
Completed in 29 milliseconds
Indexes created Mon Mar 02 05:31:46 UTC 2026