port 209 lib/vfs/path.c path_element->port = 0; port 262 lib/vfs/path.c if (sscanf (colon + 1, "%d", &path_element->port) == 1) port 264 lib/vfs/path.c if (path_element->port <= 0 || path_element->port >= 65536) port 265 lib/vfs/path.c path_element->port = 0; port 273 lib/vfs/path.c path_element->port = 1; port 276 lib/vfs/path.c path_element->port = 2; port 832 lib/vfs/path.c new_element->port = element->port; port 1131 lib/vfs/path.c if (element->port != 0) port 1132 lib/vfs/path.c mc_config_set_int (cpath, groupname, "port", element->port); port 1201 lib/vfs/path.c element->port = mc_config_get_int (cpath, groupname, "port", 0); port 1515 lib/vfs/path.c if (element->port != 0) port 1516 lib/vfs/path.c g_string_append_printf (buffer, ":%d", element->port); port 39 lib/vfs/path.h int port; port 251 lib/vfs/utilvfs.c path_element->port = default_port; port 329 lib/vfs/utilvfs.c if (sscanf (colon + 1, "%d", &path_element->port) == 1) port 331 lib/vfs/utilvfs.c if (path_element->port <= 0 || path_element->port >= 65536) port 332 lib/vfs/utilvfs.c path_element->port = default_port; port 340 lib/vfs/utilvfs.c path_element->port = 1; port 343 lib/vfs/utilvfs.c path_element->port = 2; port 354 src/vfs/ftpfs/ftpfs.c if (path_element->port == 0) port 355 src/vfs/ftpfs/ftpfs.c path_element->port = FTP_COMMAND_PORT; port 829 src/vfs/ftpfs/ftpfs.c ftpfs_get_proxy_host_and_port (const char *proxy, char **host, int *port) port 836 src/vfs/ftpfs/ftpfs.c *port = path_element->port; port 848 src/vfs/ftpfs/ftpfs.c char port[8]; port 868 src/vfs/ftpfs/ftpfs.c tmp_port = super->path_element->port; port 871 src/vfs/ftpfs/ftpfs.c g_snprintf (port, sizeof (port), "%hu", (unsigned short) tmp_port); port 886 src/vfs/ftpfs/ftpfs.c e = getaddrinfo (host, port, &hints, &res); port 893 src/vfs/ftpfs/ftpfs.c e = getaddrinfo (host, port, &hints, &res); port 897 src/vfs/ftpfs/ftpfs.c *port = '\0'; port 1046 src/vfs/ftpfs/ftpfs.c && (path_element->port == super->path_element->port)) port 1148 src/vfs/ftpfs/ftpfs.c int port; port 1159 src/vfs/ftpfs/ftpfs.c port = atoi (c); port 1160 src/vfs/ftpfs/ftpfs.c if (port < 0 || port > 65535) port 1163 src/vfs/ftpfs/ftpfs.c port = htons (port); port 1168 src/vfs/ftpfs/ftpfs.c ((struct sockaddr_in *) sa)->sin_port = port; port 1171 src/vfs/ftpfs/ftpfs.c ((struct sockaddr_in6 *) sa)->sin6_port = port; port 1209 src/vfs/ftpfs/ftpfs.c unsigned short int port; port 1218 src/vfs/ftpfs/ftpfs.c port = ((struct sockaddr_in *) &data_addr)->sin_port; port 1222 src/vfs/ftpfs/ftpfs.c port = ((struct sockaddr_in6 *) &data_addr)->sin6_port; port 1261 src/vfs/ftpfs/ftpfs.c unsigned char *p = (unsigned char *) &port; port 1278 src/vfs/ftpfs/ftpfs.c port = ntohs (port); port 1281 src/vfs/ftpfs/ftpfs.c res = (ftpfs_command (me, super, WAIT_REPLY, "EPRT |%u|%s|%hu|", af, addr, port) == COMPLETE) port 55 src/vfs/sftpfs/config_parser.c int port; // port for connect to host port 111 src/vfs/sftpfs/config_parser.c offsetof (sftpfs_ssh_config_entity_t, port), port 359 src/vfs/sftpfs/config_parser.c config_entity->port = SFTP_DEFAULT_PORT; port 419 src/vfs/sftpfs/config_parser.c if (super->path_element->port == 0) port 420 src/vfs/sftpfs/config_parser.c super->path_element->port = config_entity->port; port 136 src/vfs/sftpfs/connection.c char port[BUF_TINY]; port 149 src/vfs/sftpfs/connection.c sprintf (port, "%hu", (unsigned short) super->path_element->port); port 164 src/vfs/sftpfs/connection.c e = getaddrinfo (super->path_element->host, port, &hints, &res); port 171 src/vfs/sftpfs/connection.c e = getaddrinfo (super->path_element->host, port, &hints, &res); port 305 src/vfs/sftpfs/connection.c int port; port 312 src/vfs/sftpfs/connection.c port = (int) g_ascii_strtoll (kh_name_end + 2, NULL, 10); port 313 src/vfs/sftpfs/connection.c if (port == super->path_element->port) port 545 src/vfs/sftpfs/connection.c sftpfs_super->known_hosts, super->path_element->host, super->path_element->port, remote_key, port 696 src/vfs/sftpfs/sftpfs.c && (vpath_element->port == orig_connect_info->port)); port 519 src/vfs/shell/shell.c const char *xsh = (super->path_element->port == SHELL_FLAG_RSH ? "rsh" : "ssh"); port 523 src/vfs/shell/shell.c if (super->path_element->port == SHELL_FLAG_COMPRESSED) port 526 src/vfs/shell/shell.c if (super->path_element->port > SHELL_FLAG_RSH) port 529 src/vfs/shell/shell.c g_snprintf (gbuf, sizeof (gbuf), "%d", super->path_element->port); port 670 src/vfs/shell/shell.c super->path_element->port = SHELL_FLAG_RSH; port 725 src/vfs/shell/shell.c && (path_element->port == super->path_element->port)) port 1659 src/vfs/shell/shell.c switch (super->path_element->port) port 1668 src/vfs/shell/shell.c if (super->path_element->port > SHELL_FLAG_RSH) port 1670 src/vfs/shell/shell.c g_snprintf (gbuf, sizeof (gbuf), ":%d", super->path_element->port);