mirror of
https://github.com/wiiu-env/ftpiiu_plugin.git
synced 2024-11-26 06:34:17 +01:00
reduce dropped connections at end of transfer
This commit is contained in:
parent
c79616d2ef
commit
5617e2c32a
11
source/ftp.c
11
source/ftp.c
@ -295,6 +295,7 @@ ftp_closesocket(int fd,
|
|||||||
int rc;
|
int rc;
|
||||||
struct sockaddr_in addr;
|
struct sockaddr_in addr;
|
||||||
socklen_t addrlen = sizeof(addr);
|
socklen_t addrlen = sizeof(addr);
|
||||||
|
struct pollfd pollinfo;
|
||||||
|
|
||||||
if(connected)
|
if(connected)
|
||||||
{
|
{
|
||||||
@ -310,9 +311,17 @@ ftp_closesocket(int fd,
|
|||||||
inet_ntoa(addr.sin_addr), ntohs(addr.sin_port));
|
inet_ntoa(addr.sin_addr), ntohs(addr.sin_port));
|
||||||
|
|
||||||
/* shutdown connection */
|
/* shutdown connection */
|
||||||
rc = shutdown(fd, SHUT_RDWR);
|
rc = shutdown(fd, SHUT_WR);
|
||||||
if(rc != 0)
|
if(rc != 0)
|
||||||
console_print(RED "shutdown: %d %s\n" RESET, errno, strerror(errno));
|
console_print(RED "shutdown: %d %s\n" RESET, errno, strerror(errno));
|
||||||
|
|
||||||
|
/* wait for client to close connection */
|
||||||
|
pollinfo.fd = fd;
|
||||||
|
pollinfo.events = POLLIN;
|
||||||
|
pollinfo.revents = 0;
|
||||||
|
rc = poll(&pollinfo, 1, 250);
|
||||||
|
if(rc < 0)
|
||||||
|
console_print(RED "poll: %d %s\n" RESET, errno, strerror(errno));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* close socket */
|
/* close socket */
|
||||||
|
Loading…
Reference in New Issue
Block a user