Metropoli BBS
VIEWER: slave.c MODE: TEXT (ASCII)
/*
 * This OS/2 port was hacked by Harald Kipp from the
 *
 *      Network News Transfer Protocol server
 *
 *      Phil Lapsley
 *      University of California, Berkeley
 *      Stan Barber
 *      Baylor College of Medicine
 *
 * Bug reports related to THIS modified version should be sent to
 *
 *  harald@os2point.ping.de
 *  harald@sesam.com
 *  Fido: 2:2448/434
 *
 */

#include <os2.h>
#include <stdio.h>

#include <tcpconn.h>

#include "globals.h"
#include "nntp.h"
#include "changi.h"

/*
 * SLAVE
 *
 * note slave status, which is actually unimplemented.
 */

void slave(PNEWSCLIENT pnc, int argc, char *argv[])
{
    so_printf(pnc -> s, "%d I don't support masochism.\r\n", OK_SLAVE);
    if (argc && argv) ;
}
[ RETURN TO DIRECTORY ]