Home
last modified time | relevance | path

Searched refs:host_name (Results 1 – 9 of 9) sorted by relevance

/dragonfly/libexec/telnetd/
H A Dtelnetd.c111 char host_name[MAXHOSTNAMELEN]; variable
664 (void) gethostname(host_name, sizeof(host_name) - 1); in doit()
665 host_name[sizeof(host_name) - 1] = '\0'; in doit()
666 hostname = host_name; in doit()
873 (void) strlcpy(host_name, HN, sizeof(host_name)); in telnet()
880 edithost(HE, host_name); in telnet()
/dragonfly/contrib/gdb-7/gdb/
H A Dversion.h26 extern const char host_name[];
H A Dtop.c1143 if (strcmp (host_name, target_name) != 0) in print_gdb_version()
1146 host_name, target_name); in print_gdb_version()
1150 fprintf_filtered (stream, "%s", host_name); in print_gdb_version()
/dragonfly/gnu/usr.bin/gdb/libgdb/
H A Dversion.c3 const char host_name[] = MACHINE_ARCH"-dragonfly"; variable
/dragonfly/contrib/dhcpcd/src/
H A Ddhcpcd.conf32 option host_name
/dragonfly/crypto/libressl/ssl/
H A Dssl_tlsext.c639 CBB server_name_list, host_name; in tlsext_sni_client_build() local
645 if (!CBB_add_u16_length_prefixed(&server_name_list, &host_name)) in tlsext_sni_client_build()
647 if (!CBB_add_bytes(&host_name, (const uint8_t *)s->tlsext_hostname, in tlsext_sni_client_build()
739 CBS server_name_list, host_name; in tlsext_sni_server_parse() local
763 if (!CBS_get_u16_length_prefixed(&server_name_list, &host_name)) in tlsext_sni_server_parse()
765 if (CBS_len(&host_name) < 1) in tlsext_sni_server_parse()
768 if (!tlsext_sni_is_valid_hostname(&host_name, &is_ip)) { in tlsext_sni_server_parse()
787 if (!CBS_mem_equal(&host_name, s->session->tlsext_hostname, in tlsext_sni_server_parse()
795 if (!CBS_strdup(&host_name, &s->session->tlsext_hostname)) { in tlsext_sni_server_parse()
/dragonfly/contrib/dhcpcd/
H A DREADME.md59 option domain_name_servers, domain_name, domain_search, host_name
/dragonfly/crypto/openssh/
H A Dssh.c555 process_config_files(const char *host_name, struct passwd *pw, int final_pass, in process_config_files() argument
563 !read_config_file(config, pw, host, host_name, &options, in process_config_files()
572 (void)read_config_file(buf, pw, host, host_name, in process_config_files()
578 host, host_name, &options, in process_config_files()
/dragonfly/contrib/gdb-7/gdb/python/
H A Dpython.c1584 PyModule_AddStringConstant (gdb_module, "HOST_CONFIG", (char*) host_name); in _initialize_python()