Home
last modified time | relevance | path

Searched refs:bindname (Results 1 – 3 of 3) sorted by relevance

/dragonfly/lib/libc/net/
H A Dhesiod.c157 if (strlcpy(bindname, name, sizeof(bindname)) >= sizeof(bindname)) { in hesiod_to_bind()
195 strcat(bindname, "."); in hesiod_to_bind()
196 strcat(bindname, type); in hesiod_to_bind()
204 strcat(bindname, "."); in hesiod_to_bind()
205 strcat(bindname, rhs); in hesiod_to_bind()
230 if (!bindname) in hesiod_resolve()
237 free(bindname); in hesiod_resolve()
488 if (bindname) in hes_to_bind()
489 free(bindname); in hes_to_bind()
491 if (!bindname) in hes_to_bind()
[all …]
/dragonfly/usr.bin/hesinfo/
H A Dhesinfo.c33 char **list, **p, *bindname, *name, *type; in main() local
70 bindname = hesiod_to_bind(context, name, type); in main()
71 if (!bindname) { in main()
80 printf("%s\n", bindname); in main()
81 free(bindname); in main()
/dragonfly/libexec/ftpd/
H A Dftpd.c252 char *bindname = NULL; in main() local
291 bindname = optarg; in main()
436 ctl_sock = socksetup(family, bindname, bindport); in main()
3334 socksetup(int af, char *bindname, const char *bindport) in socksetup() argument
3344 error = getaddrinfo(bindname, bindport, &hints, &res); in socksetup()