Custom Query (8117 matches)
Results (67 - 69 of 8117)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#3395 | MSW: Ctrl + Space not working in file list | |||
Description |
multiple selection in local files windows with ctrl+spacebar is not available; would operate in previous release. Thanks and goodbye |
|||
#1179 | Active mode data connection is made from the wrong port | |||
Description |
According to the FTP specification (RFC0959), in active FTP mode, the data connection should be made from port L-1, where L is the port that the server is listening for control connections (see section 3.2 Establishing Data Connections, paragraph 1). This should be true for every active mode transfer. FileZilla Server attempts to bind the outgoing port as per specification, but fails to do this when another active mode data connection exists. The second connection will get port L+1, and if a third connection is opened, then it will get an arbitrary OS-assigned port. Versions:
0.9.4, 0.9.8a, 0.9.19)
To reproduce:
host to the same server host.
-n" on the client host. Expected behavior:
port 21.
Observed behavior:
port 21.
unspecified port. Cause:
requested local port is already used by another socket.
setsockopt(socket, SOL_SOCKET, SO_REUSEADDR, ...) call, passing TRUE as the option value, before binding the socket. |
|||
#1505 | Fix outgoing port on data connections in active mode | |||
Description |
This patch addresses the problem described in the bug report [ 1575413 ] Active mode data connection is made from the wrong port. |