port 211 lib/vfs/path.c path_element->port = 0; port 265 lib/vfs/path.c if (sscanf (colon + 1, "%d", &path_element->port) == 1) port 267 lib/vfs/path.c if (path_element->port <= 0 || path_element->port >= 65536) port 268 lib/vfs/path.c path_element->port = 0; port 276 lib/vfs/path.c path_element->port = 1; port 279 lib/vfs/path.c path_element->port = 2; port 856 lib/vfs/path.c new_element->port = element->port; port 1166 lib/vfs/path.c if (element->port != 0) port 1167 lib/vfs/path.c mc_config_set_int (cpath, groupname, "port", element->port); port 1238 lib/vfs/path.c element->port = mc_config_get_int (cpath, groupname, "port", 0); port 1552 lib/vfs/path.c if (element->port != 0) port 1553 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 330 lib/vfs/utilvfs.c if (sscanf (colon + 1, "%d", &path_element->port) == 1) port 332 lib/vfs/utilvfs.c if (path_element->port <= 0 || path_element->port >= 65536) port 333 lib/vfs/utilvfs.c path_element->port = default_port; port 341 lib/vfs/utilvfs.c path_element->port = 1; port 344 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 831 src/vfs/ftpfs/ftpfs.c ftpfs_get_proxy_host_and_port (const char *proxy, char **host, int *port) port 838 src/vfs/ftpfs/ftpfs.c *port = path_element->port; port 850 src/vfs/ftpfs/ftpfs.c char port[8]; port 870 src/vfs/ftpfs/ftpfs.c tmp_port = super->path_element->port; port 873 src/vfs/ftpfs/ftpfs.c g_snprintf (port, sizeof (port), "%hu", (unsigned short) tmp_port); port 888 src/vfs/ftpfs/ftpfs.c e = getaddrinfo (host, port, &hints, &res); port 895 src/vfs/ftpfs/ftpfs.c e = getaddrinfo (host, port, &hints, &res); port 899 src/vfs/ftpfs/ftpfs.c *port = '\0'; port 1048 src/vfs/ftpfs/ftpfs.c && (path_element->port == super->path_element->port)) port 1151 src/vfs/ftpfs/ftpfs.c int port; port 1162 src/vfs/ftpfs/ftpfs.c port = atoi (c); port 1163 src/vfs/ftpfs/ftpfs.c if (port < 0 || port > 65535) port 1166 src/vfs/ftpfs/ftpfs.c port = htons (port); port 1171 src/vfs/ftpfs/ftpfs.c ((struct sockaddr_in *) sa)->sin_port = port; port 1174 src/vfs/ftpfs/ftpfs.c ((struct sockaddr_in6 *) sa)->sin6_port = port; port 1212 src/vfs/ftpfs/ftpfs.c unsigned short int port; port 1221 src/vfs/ftpfs/ftpfs.c port = ((struct sockaddr_in *) &data_addr)->sin_port; port 1225 src/vfs/ftpfs/ftpfs.c port = ((struct sockaddr_in6 *) &data_addr)->sin6_port; port 1264 src/vfs/ftpfs/ftpfs.c unsigned char *p = (unsigned char *) &port; port 1281 src/vfs/ftpfs/ftpfs.c port = ntohs (port); port 1284 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 297 src/vfs/sftpfs/connection.c int port; port 304 src/vfs/sftpfs/connection.c port = (int) g_ascii_strtoll (kh_name_end + 2, NULL, 10); port 305 src/vfs/sftpfs/connection.c if (port == super->path_element->port) port 537 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 520 src/vfs/shell/shell.c const char *xsh = (super->path_element->port == SHELL_FLAG_RSH ? "rsh" : "ssh"); port 524 src/vfs/shell/shell.c if (super->path_element->port == SHELL_FLAG_COMPRESSED) port 527 src/vfs/shell/shell.c if (super->path_element->port > SHELL_FLAG_RSH) port 530 src/vfs/shell/shell.c g_snprintf (gbuf, sizeof (gbuf), "%d", super->path_element->port); port 671 src/vfs/shell/shell.c super->path_element->port = SHELL_FLAG_RSH; port 726 src/vfs/shell/shell.c && (path_element->port == super->path_element->port)) port 1662 src/vfs/shell/shell.c switch (super->path_element->port) port 1671 src/vfs/shell/shell.c if (super->path_element->port > SHELL_FLAG_RSH) port 1673 src/vfs/shell/shell.c g_snprintf (gbuf, sizeof (gbuf), ":%d", super->path_element->port);