
/*
 *  DNAAccept.C
 */

#include "lib.h"

int
DNAAccept(lisport)
PORT *lisport;
{
    IOSTD *ior;

    if (ior = (IOSTD *)GetMsg(lisport)) {
	ior->io_Error = 1;
	ReplyMsg((MSG *)ior);
    }
    if (lisport->mp_MsgList.lh_Head != (NODE *)&lisport->mp_MsgList.lh_Tail)
	SetSignal(1 << lisport->mp_SigBit, 1 << lisport->mp_SigBit);
    return(ior != NULL);
}
