Searched refs:host_port (Results 1 – 13 of 13) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | UriParser.cpp | 45 auto host_port = uri.substr( in Parse() local 50 if (host_port.starts_with('[')) { in Parse() 52 pos = host_port.rfind(']'); in Parse() 56 ret.hostname = host_port.substr(1, pos - 1); in Parse() 57 host_port = host_port.drop_front(pos + 1); in Parse() 58 if (!host_port.empty() && !host_port.consume_front(":")) in Parse() 61 std::tie(ret.hostname, host_port) = host_port.split(':'); in Parse() 65 if (!host_port.empty()) { in Parse() 67 if (host_port.getAsInteger(0, port_value)) in Parse()
|
/freebsd/contrib/llvm-project/lldb/source/Host/common/ |
H A D | UDPSocket.cpp | 62 llvm::Expected<HostAndPort> host_port = DecodeHostAndPort(name); in Connect() local 63 if (!host_port) in Connect() 64 return host_port.takeError(); in Connect() 75 …int err = ::getaddrinfo(host_port->hostname.c_str(), std::to_string(host_port->port).c_str(), &hin… in Connect() 84 host_port->hostname.c_str(), host_port->port, err, gai_strerror(err)); in Connect() 111 …const bool bind_addr_success = (host_port->hostname == "127.0.0.1" || host_port->hostname == "loca… in Connect() 112 ? bind_addr.SetToLocalhost(kDomain, host_port->port) in Connect() 113 : bind_addr.SetToAnyAddress(kDomain, host_port->port); in Connect()
|
H A D | TCPSocket.cpp | 156 llvm::Expected<HostAndPort> host_port = DecodeHostAndPort(name); in Connect() local 157 if (!host_port) in Connect() 158 return Status(host_port.takeError()); in Connect() 161 SocketAddress::GetAddressInfo(host_port->hostname.c_str(), nullptr, in Connect() 168 address.SetPort(host_port->port); in Connect() 195 llvm::Expected<HostAndPort> host_port = DecodeHostAndPort(name); in Listen() local 196 if (!host_port) in Listen() 197 return Status(host_port.takeError()); in Listen() 199 if (host_port->hostname == "*") in Listen() 200 host_port->hostname = "0.0.0.0"; in Listen() [all …]
|
/freebsd/usr.sbin/bhyve/ |
H A D | libslirp.h | 281 int host_port, struct in_addr guest_addr, int guest_port); 284 int host_port);
|
/freebsd/crypto/openssh/ |
H A D | channels.c | 1534 c->host_port = ntohs(s4_req.dest_port); in channel_decode_socks4() 1537 c->self, c->path, c->host_port, s4_req.command); in channel_decode_socks4() 1671 c->host_port = ntohs(dest_port); in channel_decode_socks5() 1674 c->self, c->path, c->host_port, s5_req.command); in channel_decode_socks5() 1703 c->host_port = port_to_connect; in channel_connect_stdio_fwd() 1897 rtype, c->listening_port, c->path, c->host_port, in port_open_helper() 1904 (r = sshpkt_put_u32(ssh, c->host_port)) != 0) in port_open_helper() 1958 c->listening_port, c->path, c->host_port); in channel_post_port_listener() 1966 } else if (c->host_port == PORT_STREAMLOCAL) { in channel_post_port_listener() 1969 } else if (c->host_port == 0) { in channel_post_port_listener() [all …]
|
H A D | channels.h | 168 int host_port; /* remote port to connect for forwards */ member
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | bio.h | 773 OSSL_DEPRECATEDIN_1_1_0 int BIO_get_accept_socket(char *host_port, int mode); 800 BIO *BIO_new_connect(const char *host_port); 801 BIO *BIO_new_accept(const char *host_port);
|
H A D | bio.h.in | 750 OSSL_DEPRECATEDIN_1_1_0 int BIO_get_accept_socket(char *host_port, int mode); 777 BIO *BIO_new_connect(const char *host_port); 778 BIO *BIO_new_accept(const char *host_port);
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | BIO_s_accept.pod | 23 BIO *BIO_new_accept(char *host_port); 85 B<host_port>.
|
/freebsd/crypto/heimdal/appl/ftp/ftpd/ |
H A D | ftpcmd.y | 154 | PORT SP host_port CRLF check_secure 731 host_port
|
/freebsd/libexec/ftpd/ |
H A D | ftpcmd.y | 147 | PORT check_login SP host_port CRLF 797 host_port
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
H A D | ProcessGDBRemote.h | 386 Status ConnectToDebugserver(llvm::StringRef host_port);
|
H A D | GDBRemoteCommunicationServerLLGS.cpp | 4308 std::string host_port = url_arg.str(); in LLGSArgToURL() local 4312 host_port.insert(0, "localhost"); in LLGSArgToURL() 4315 if (!llvm::errorToBool(Socket::DecodeHostAndPort(host_port).takeError())) in LLGSArgToURL() 4316 return (reverse_connect ? "connect://" : "listen://") + host_port; in LLGSArgToURL()
|