use client_doit

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@7503 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1999-12-04 18:17:26 +00:00
parent 02aef44bc0
commit ec5861a57f
4 changed files with 4 additions and 155 deletions

View File

@@ -148,46 +148,10 @@ proto (int sock, const char *hostname, const char *service)
return 0;
}
static int
doit (const char *hostname, int port, const char *service)
{
struct in_addr **h;
struct hostent *hostent;
hostent = roken_gethostbyname (hostname);
if (hostent == NULL)
errx (1, "gethostbyname '%s' failed: %s",
hostname,
hstrerror(h_errno));
for (h = (struct in_addr **)hostent->h_addr_list;
*h != NULL;
++h) {
struct sockaddr_in addr;
int s;
memset (&addr, 0, sizeof(addr));
addr.sin_family = AF_INET;
addr.sin_port = port;
addr.sin_addr = **h;
s = socket (AF_INET, SOCK_STREAM, 0);
if (s < 0)
err (1, "socket");
if (connect (s, (struct sockaddr *)&addr, sizeof(addr)) < 0) {
warn ("connect(%s)", hostname);
close (s);
continue;
}
return proto (s, hostname, service);
}
return 1;
}
int
main(int argc, char **argv)
{
krb5_context context; /* XXX */
int port = client_setup(&context, &argc, argv);
return doit (argv[argc], port, service);
return client_doit (argv[argc], port, service, proto);
}