1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
/* rcmd.c --- execute a command on a remote host from OS/2
Karl Fogel <kfogel@cyclic.com> --- November 1995 */
/* This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details. */
#include <io.h>
#include <stdio.h>
#include <fcntl.h>
#include <malloc.h>
#include <errno.h>
/* <sys/socket.h> wants `off_t': */
#include <sys/types.h>
/* This should get us ibmtcpip\include\sys\socket.h: */
#include <sys/socket.h>
#include <assert.h>
#include "rcmd.h"
void
init_sockets ()
{
int rc;
rc = sock_init ();
if (rc != 0)
{
fprintf (stderr, "sock_init() failed -- returned %d!\n", rc);
exit (1);
}
}
static int
resolve_address (const char **ahost, struct sockaddr_in *sai)
{
fprintf (stderr,
"Error: resolve_address() doesn't work.\n");
exit (1);
}
static int
bind_and_connect (struct sockaddr_in *server_sai)
{
fprintf (stderr,
"Error: bind_and_connect() doesn't work.\n");
exit (1);
}
static int
rcmd_authenticate (int fd, char *locuser, char *remuser, char *command)
{
fprintf (stderr,
"Error: rcmd_authenticate() doesn't work.\n");
exit (1);
}
int
rcmd (const char **ahost,
unsigned short inport,
char *locuser,
char *remuser,
char *cmd,
int *fd2p)
{
fprintf (stderr,
"Error: rcmd() doesn't work.\n");
exit (1);
}
|