summaryrefslogtreecommitdiffstats
path: root/source/n/netkit-ftp/patches/12-netkit-ftp-0.17-multihome.patch
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2016-06-30 20:26:57 +0000
committer Eric Hameleers <alien@slackware.com>2018-05-31 23:31:18 +0200
commitd31c50870d0bee042ce660e445c9294a59a3a65b (patch)
tree6bfc0de3c95267b401b620c2c67859557dc60f97 /source/n/netkit-ftp/patches/12-netkit-ftp-0.17-multihome.patch
parent76fc4757ac91ac7947a01fb7b53dddf9a78a01d1 (diff)
downloadcurrent-d31c50870d0bee042ce660e445c9294a59a3a65b.tar.gz
current-d31c50870d0bee042ce660e445c9294a59a3a65b.tar.xz
Slackware 14.2slackware-14.2
Thu Jun 30 20:26:57 UTC 2016 Slackware 14.2 x86_64 stable is released! The long development cycle (the Linux community has lately been living in "interesting times", as they say) is finally behind us, and we're proud to announce the release of Slackware 14.2. The new release brings many updates and modern tools, has switched from udev to eudev (no systemd), and adds well over a hundred new packages to the system. Thanks to the team, the upstream developers, the dedicated Slackware community, and everyone else who pitched in to help make this release a reality. The ISOs are off to be replicated, a 6 CD-ROM 32-bit set and a dual-sided 32-bit/64-bit x86/x86_64 DVD. Please consider supporting the Slackware project by picking up a copy from store.slackware.com. We're taking pre-orders now, and offer a discount if you sign up for a subscription. Have fun! :-)
Diffstat (limited to 'source/n/netkit-ftp/patches/12-netkit-ftp-0.17-multihome.patch')
-rw-r--r--source/n/netkit-ftp/patches/12-netkit-ftp-0.17-multihome.patch98
1 files changed, 98 insertions, 0 deletions
diff --git a/source/n/netkit-ftp/patches/12-netkit-ftp-0.17-multihome.patch b/source/n/netkit-ftp/patches/12-netkit-ftp-0.17-multihome.patch
new file mode 100644
index 000000000..9000937e7
--- /dev/null
+++ b/source/n/netkit-ftp/patches/12-netkit-ftp-0.17-multihome.patch
@@ -0,0 +1,98 @@
+--- netkit-ftp-0.17/ftp/ftp_var.h.rasold 2006-01-12 11:23:16.000000000 +0100
++++ netkit-ftp-0.17/ftp/ftp_var.h 2006-01-12 11:24:06.000000000 +0100
+@@ -69,6 +69,7 @@
+ Extern int bell; /* ring bell on cmd completion */
+ Extern int doglob; /* glob local file names */
+ Extern int autologin; /* establish user account on connection */
++Extern int multihome; /* multi homed host, use same interface for cmd and data channels */
+ Extern int proxy; /* proxy server connection active */
+ Extern int proxflag; /* proxy connection exists */
+ Extern int sunique; /* store files on server with unique name */
+--- netkit-ftp-0.17/ftp/ftp.c.rasold 2006-01-12 11:14:55.000000000 +0100
++++ netkit-ftp-0.17/ftp/ftp.c 2006-01-12 11:22:42.000000000 +0100
+@@ -132,6 +132,7 @@
+ static sigjmp_buf ptabort;
+ static int ptabflg = 0;
+ static int abrtflag = 0;
++struct sockaddr_in source;
+
+ void lostpeer(int);
+ extern int connected;
+@@ -153,7 +154,7 @@
+ char *
+ hookup(const char *host, const char *port)
+ {
+- int s, tos, error;
++ int s, tos, error, alen;
+ socklen_t len;
+ static char hostnamebuf[256];
+ struct addrinfo hints, *res, *res0;
+@@ -278,7 +279,11 @@
+ }
+ if (verbose)
+ printf("Connected to %s (%s).\n", hostname, hbuf);
+- if (getreply(0) > 2) { /* read startup message from server */
++ alen = sizeof(source);
++ getsockname(s,(struct sockaddr*)&source, &alen);
++ source.sin_port = 0; /* We just want the addr, not the port */
++
++ if (getreply(0) > 2) { /* read startup message from server */
+ if (cin)
+ (void) fclose(cin);
+ if (cout)
+@@ -1254,6 +1259,13 @@
+ perror("ftp: socket");
+ return(1);
+ }
++ if((multihome) &&
++ bind(data, (struct sockaddr*)&source, sizeof(source)) == -1) {
++ close(data);
++ data = -1;
++ perror("ftp multihome bind");
++ return(1);
++ }
+ if (options & SO_DEBUG &&
+ setsockopt(data, SOL_SOCKET, SO_DEBUG, (char *)&on,
+ sizeof (on)) < 0)
+--- netkit-ftp-0.17/ftp/main.c.rasold 2006-01-12 11:24:27.000000000 +0100
++++ netkit-ftp-0.17/ftp/main.c 2006-01-12 11:27:20.000000000 +0100
+@@ -93,6 +93,7 @@
+ printf("\t -n: inhibit auto-login\n");
+ printf("\t -e: disable readline support, if present\n");
+ printf("\t -g: disable filename globbing\n");
++ printf("\t -m: don't force data channel interface to the same as control channel\n");
+ printf("\t -v: verbose mode\n");
+ printf("\t -t: enable packet tracing [nonfunctional]\n");
+ printf("\t -d: enable debugging\n");
+@@ -120,6 +121,7 @@
+ doglob = 1;
+ interactive = 1;
+ autologin = 1;
++ multihome = 1;
+ passivemode = 1;
+
+ cp = strrchr(argv[0], '/');
+@@ -172,6 +174,10 @@
+ rl_inhibit = 1;
+ break;
+
++ case 'm':
++ multihome = 0;
++ break;
++
+ case 'h':
+ usage();
+ exit(0);
+--- netkit-ftp-0.17/ftp/ftp.1.rasold 2006-01-12 11:14:09.000000000 +0100
++++ netkit-ftp-0.17/ftp/ftp.1 2006-01-12 11:15:48.000000000 +0100
+@@ -92,6 +92,10 @@
+ executable. Otherwise, does nothing.
+ .It Fl g
+ Disables file name globbing.
++.It Fl m
++The default requires that ftp explicitly binds to the same interface for the data
++channel as the control channel in passive mode. Useful on multi-homed
++clients. This option disables this behavior.
+ .It Fl v
+ Verbose option forces
+ .Nm ftp