diff options
| author | Yoshinobu Inoue <shin@FreeBSD.org> | 2000-02-15 15:11:40 +0000 |
|---|---|---|
| committer | Yoshinobu Inoue <shin@FreeBSD.org> | 2000-02-15 15:11:40 +0000 |
| commit | 1132b408c592a6681bca15d2ce53eff8cc608c78 (patch) | |
| tree | c2c6fe8f895f76c6fd4c1c6934c5845f2ddb4079 /usr.bin | |
| parent | f5abb8467c0bdac41477465058f9bb5b2ccd82b3 (diff) | |
Notes
Diffstat (limited to 'usr.bin')
| -rw-r--r-- | usr.bin/ftp/extern.h | 1 | ||||
| -rw-r--r-- | usr.bin/ftp/fetch.c | 2 | ||||
| -rw-r--r-- | usr.bin/ftp/ftp.c | 2 | ||||
| -rw-r--r-- | usr.bin/ftp/main.c | 16 | ||||
| -rw-r--r-- | usr.bin/rlogin/rlogin.c | 19 | ||||
| -rw-r--r-- | usr.bin/rsh/rsh.c | 22 |
6 files changed, 46 insertions, 16 deletions
diff --git a/usr.bin/ftp/extern.h b/usr.bin/ftp/extern.h index 7841f7b02c55..278be80b1bef 100644 --- a/usr.bin/ftp/extern.h +++ b/usr.bin/ftp/extern.h @@ -165,6 +165,7 @@ extern struct cmd cmdtab[]; extern FILE *cout; extern int data; extern char *home; +extern int family; extern int proxy; extern char reply_string[]; extern int NCMDS; diff --git a/usr.bin/ftp/fetch.c b/usr.bin/ftp/fetch.c index bc8adf151759..f306406182d2 100644 --- a/usr.bin/ftp/fetch.c +++ b/usr.bin/ftp/fetch.c @@ -204,7 +204,7 @@ url_get(origline, proxyenv) port = httpport; memset(&hints, 0, sizeof(hints)); - hints.ai_family = AF_UNSPEC; + hints.ai_family = family; hints.ai_socktype = SOCK_STREAM; error = getaddrinfo(host, port, &hints, &res); res0 = res; diff --git a/usr.bin/ftp/ftp.c b/usr.bin/ftp/ftp.c index c31cb944f615..cfdfda8f3995 100644 --- a/usr.bin/ftp/ftp.c +++ b/usr.bin/ftp/ftp.c @@ -121,7 +121,7 @@ hookup(host0, port) host = hostnamebuf; memset(&hints, 0, sizeof(hints)); hints.ai_flags = AI_CANONNAME; - hints.ai_family = AF_UNSPEC; + hints.ai_family = family; hints.ai_socktype = SOCK_STREAM; hints.ai_protocol = 0; error = getaddrinfo(host, port, &hints, &res0); diff --git a/usr.bin/ftp/main.c b/usr.bin/ftp/main.c index 48bf77e1eb6a..446087898d0e 100644 --- a/usr.bin/ftp/main.c +++ b/usr.bin/ftp/main.c @@ -70,6 +70,8 @@ __RCSID_SOURCE("$NetBSD: main.c,v 1.26 1997/10/14 16:31:22 christos Exp $"); #include "ftp_var.h" #include "pathnames.h" +int family = AF_UNSPEC; + int main __P((int, char **)); int @@ -151,8 +153,16 @@ main(argc, argv) if (isatty(fileno(stdout)) && !dumbterm) progress = 1; /* progress bar on if tty is usable */ - while ((ch = getopt(argc, argv, "adeginpP:s:tUvV")) != -1) { + while ((ch = getopt(argc, argv, "46adeginpP:s:tUvV")) != -1) { switch (ch) { + case '4': + family = AF_INET; + break; +#ifdef INET6 + case '6': + family = AF_INET6; + break; +#endif case 'a': anonftp = 1; break; @@ -228,7 +238,7 @@ main(argc, argv) int error; memset(&hints, 0, sizeof(hints)); - hints.ai_family = AF_UNSPEC; + hints.ai_family = family; hints.ai_socktype = SOCK_STREAM; error = getaddrinfo(src_addr, NULL, &hints, &res); if (error) { @@ -697,7 +707,7 @@ void usage() { (void)fprintf(stderr, - "usage: %s [-adeginptUvV] [-P port] [-s src_addr] [host [port]]\n" + "usage: %s [-46adeginptUvV] [-P port] [-s src_addr] [host [port]]\n" " %s host:path[/]\n" " %s ftp://host[:port]/path[/]\n" " %s http://host[:port]/file\n", diff --git a/usr.bin/rlogin/rlogin.c b/usr.bin/rlogin/rlogin.c index 4f2cb6bfb112..fb3f3d44fc5b 100644 --- a/usr.bin/rlogin/rlogin.c +++ b/usr.bin/rlogin/rlogin.c @@ -95,6 +95,7 @@ char dst_realm_buf[REALM_SZ], *dest_realm = NULL; #endif int eight, litout, rem; +int family = PF_UNSPEC; int noescape; u_char escapechar = '~'; @@ -176,12 +177,20 @@ main(argc, argv) } #ifdef KERBEROS -#define OPTIONS "8DEKLde:i:k:l:x" +#define OPTIONS "468DEKLde:i:k:l:x" #else -#define OPTIONS "8DEKLde:i:l:" +#define OPTIONS "468DEKLde:i:l:" #endif while ((ch = getopt(argc - argoff, argv + argoff, OPTIONS)) != -1) switch(ch) { + case '4': + family = PF_INET; + break; + + case '6': + family = PF_INET6; + break; + case '8': eight = 1; break; @@ -334,10 +343,10 @@ main(argc, argv) errx(1, "the -x flag requires Kerberos authentication"); #endif /* CRYPT */ rem = rcmd_af(&host, sp->s_port, localname, user, term, 0, - PF_UNSPEC); + family); } #else - rem = rcmd_af(&host, sp->s_port, localname, user, term, 0, PF_UNSPEC); + rem = rcmd_af(&host, sp->s_port, localname, user, term, 0, family); #endif /* KERBEROS */ if (rem < 0) @@ -876,7 +885,7 @@ void usage() { (void)fprintf(stderr, - "usage: rlogin [-%s]%s[-e char] [-i localname] [-l username] host\n", + "usage: rlogin [-46%s]%s[-e char] [-i localname] [-l username] host\n", #ifdef KERBEROS #ifdef CRYPT "8DEKLdx", " [-k realm] "); diff --git a/usr.bin/rsh/rsh.c b/usr.bin/rsh/rsh.c index aecb81888e7c..69579ffe9240 100644 --- a/usr.bin/rsh/rsh.c +++ b/usr.bin/rsh/rsh.c @@ -85,6 +85,8 @@ extern char *krb_realmofhost(); */ int rfd2; +int family = PF_UNSPEC; + char *copyargs __P((char **)); void sendsig __P((int)); void talk __P((int, long, pid_t, int, int)); @@ -129,15 +131,23 @@ main(argc, argv) #ifdef KERBEROS #ifdef CRYPT -#define OPTIONS "8KLde:k:l:nt:wx" +#define OPTIONS "468KLde:k:l:nt:wx" #else -#define OPTIONS "8KLde:k:l:nt:w" +#define OPTIONS "468KLde:k:l:nt:w" #endif #else -#define OPTIONS "8KLde:l:nt:w" +#define OPTIONS "468KLde:l:nt:w" #endif while ((ch = getopt(argc - argoff, argv + argoff, OPTIONS)) != -1) switch(ch) { + case '4': + family = PF_INET; + break; + + case '6': + family = PF_INET6; + break; + case 'K': #ifdef KERBEROS use_kerberos = 0; @@ -270,11 +280,11 @@ try_connect: if (doencrypt) errx(1, "the -x flag requires Kerberos authentication"); rem = rcmd_af(&host, sp->s_port, pw->pw_name, user, args, - &rfd2, PF_UNSPEC); + &rfd2, family); } #else rem = rcmd_af(&host, sp->s_port, pw->pw_name, user, args, &rfd2, - PF_UNSPEC); + family); #endif if (rem < 0) @@ -479,7 +489,7 @@ usage() { (void)fprintf(stderr, - "usage: rsh [-nd%s]%s[-l login] [-t timeout] host [command]\n", + "usage: rsh [-46] [-nd%s]%s[-l login] [-t timeout] host [command]\n", #ifdef KERBEROS #ifdef CRYPT "x", " [-k realm] "); |
