59 lines
1.4 KiB
C
59 lines
1.4 KiB
C
/*
|
|
* Copyright (c) 1983 Regents of the University of California.
|
|
* All rights reserved. The Berkeley software License Agreement
|
|
* specifies the terms and conditions for redistribution.
|
|
*/
|
|
|
|
#ifndef lint
|
|
static char sccsid[] = "@(#)print.c 5.2 (Berkeley) 3/13/86";
|
|
#endif not lint
|
|
|
|
/* debug print routines */
|
|
|
|
#include <stdio.h>
|
|
#include <syslog.h>
|
|
|
|
#include <protocols/talkd.h>
|
|
|
|
static char *types[] =
|
|
{ "leave_invite", "look_up", "delete", "announce" };
|
|
#define NTYPES (sizeof (types) / sizeof (types[0]))
|
|
static char *answers[] =
|
|
{ "success", "not_here", "failed", "machine_unknown", "permission_denied",
|
|
"unknown_request", "badversion", "badaddr", "badctladdr" };
|
|
#define NANSWERS (sizeof (answers) / sizeof (answers[0]))
|
|
|
|
print_request(cp, mp)
|
|
char *cp;
|
|
register CTL_MSG *mp;
|
|
{
|
|
char tbuf[80], *tp;
|
|
|
|
if (mp->type > NTYPES) {
|
|
sprintf(tbuf, "type %d", mp->type);
|
|
tp = tbuf;
|
|
} else
|
|
tp = types[mp->type];
|
|
syslog(LOG_DEBUG, "%s: %s: id %d, l_user %s, r_user %s, r_tty %s",
|
|
cp, tp, mp->id_num, mp->l_name, mp->r_name, mp->r_tty);
|
|
}
|
|
|
|
print_response(cp, rp)
|
|
char *cp;
|
|
register CTL_RESPONSE *rp;
|
|
{
|
|
char tbuf[80], *tp, abuf[80], *ap;
|
|
|
|
if (rp->type > NTYPES) {
|
|
sprintf(tbuf, "type %d", rp->type);
|
|
tp = tbuf;
|
|
} else
|
|
tp = types[rp->type];
|
|
if (rp->answer > NANSWERS) {
|
|
sprintf(abuf, "answer %d", rp->answer);
|
|
ap = abuf;
|
|
} else
|
|
ap = answers[rp->answer];
|
|
syslog(LOG_DEBUG, "%s: %s: %s, id %d", cp, tp, ap, ntohl(rp->id_num));
|
|
}
|