summaryrefslogtreecommitdiffstats
path: root/source/n/netkit-ftp/patches/31-netkit-ftp-0.17-lsn-timeout.patch
blob: 561ccdbba71bbb8ed8960452daa75c5597e91bd1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
--- netkit-ftp-0.17/ftp/ftp.c.to	2012-08-10 15:49:08.510257542 +0200
+++ netkit-ftp-0.17/ftp/ftp.c	2012-08-10 15:49:32.386220785 +0200
@@ -1245,6 +1245,10 @@ initconn(void)
 	u_int ad[16], po[2], af, alen, plen;
 	char *pasvcmd = NULL;
 	char hbuf[MAXHOSTNAMELEN], pbuf[NI_MAXSERV];
+	struct timeval timeout;
+
+	timeout.tv_sec = 30;
+	timeout.tv_usec = 0;
 
 #ifdef INET6
 	if (myctladdr.su_family == AF_INET6
@@ -1486,6 +1490,10 @@ noport:
 			perror("ftp: setsockopt (reuse address)");
 			goto bad;
 		}
+	if (setsockopt (data, SOL_SOCKET, SO_RCVTIMEO, (char *)&timeout,
+                sizeof(timeout)) < 0) {
+		perror("ftp: setsockopt failed\n");
+	}
 	if (bind(data, (struct sockaddr *)&data_addr, sizeof (data_addr)) < 0) {
 		perror("ftp: bind");
 		goto bad;