NetBSD/libexec/identd/proxy.c

107 lines
2.4 KiB
C
Raw Normal View History

2001-02-05 01:10:11 +03:00
/* $NetBSD: proxy.c,v 1.6 2001/02/04 22:10:11 christos Exp $ */
1997-10-08 11:07:40 +04:00
/*
** proxy.c This file implements the proxy() call.
**
** This program is in the public domain and may be used freely by anyone
** who wants to.
**
** Last update: 12 Dec 1992
**
** Please send bug fixes/bug reports to: Peter Eriksson <pen@lysator.liu.se>
*/
1998-07-15 11:31:55 +04:00
#include <stdio.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/time.h>
#include <netinet/in.h>
1997-10-08 11:07:40 +04:00
#include "identd.h"
/*
** This function should establish a connection to a remote IDENT
** server and query it for the information associated with the
** specified connection and the return that to the caller.
**
** Should there be three different timeouts (Connection Establishment,
** Query Transmit and Query Receive)?
*/
int proxy(laddr, faddr, lport, fport, timeout)
1998-07-15 11:31:55 +04:00
#ifdef INCLUDE_PROXY
struct in_addr *laddr;
struct in_addr *faddr;
#else
void *laddr, *faddr;
#endif
int lport;
int fport;
#ifdef INCLUDE_PROXY
struct timeval *timeout;
#else
void *timeout;
#endif
{
#ifndef INCLUDE_PROXY
1998-07-15 11:31:55 +04:00
/* Just here to make the compiler shut up! */
laddr = faddr = NULL;
timeout = NULL;
printf("%d , %d : ERROR : %s\r\n",
lport, fport,
unknown_flag ? "UNKNOWN-ERROR" : "X-NOT-YET-IMPLEMENTED");
return -1;
#else
id_t *idp;
char *answer;
char *opsys;
char *charset;
idp = id_open(laddr, faddr, timeout);
if (!idp)
{
printf("%d , %d : ERROR : %s\r\n",
lport, fport,
unknown_flag ? "UNKNOWN-ERROR" : "X-CONNECTION-REFUSED");
return -1;
}
if (id_query(idp, lport, fport, timeout) < 0)
{
printf("%d , %d : ERROR : %s\r\n",
lport, fport,
unknown_flag ? "UNKNOWN-ERROR" : "X-TRANSMIT-QUERY-ERROR");
id_close(idp);
return -1;
}
switch (id_parse(idp, timeout, &lport, &fport, &answer, &opsys, &charset))
{
case 1:
printf("%d , %d : USERID : %s %s%s : %s\r\n",
lport, fport,
opsys,
charset ? "," : "",
charset ? charset : "",
answer);
break;
case 2:
printf("%d , %d : ERROR : %s\r\n",
lport, fport, answer);
break;
case 0: /* More to parse - fix this later! */
case -1: /* Internal error */
default:
printf("%d , %d : ERROR : %s\r\n",
lport, fport,
unknown_flag ? "UNKNOWN-ERROR" : "X-PARSE-REPLY-ERROR");
}
id_close(idp);
#endif
}