DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T n

⟦89e77afec⟧ TextFile

    Length: 1077 (0x435)
    Types: TextFile
    Names: »net_schedule.c«

Derivation

└─⟦3d0c2be1b⟧ Bits:30001254 ISODE-5.0 Tape
    └─⟦eba4602b1⟧ »./isode-5.0.tar.Z« 
        └─⟦d3ac74d73⟧ 
            └─⟦this⟧ »isode-5.0/quipu/net_schedule.c« 

TextFile

/* net_schedule.c - */

#ifndef lint
static char *rcsid = "$Header: /f/osi/quipu/RCS/net_schedule.c,v 6.0 89/03/18 23:41:43 mrose Rel $";
#endif

/*
 * $Header: /f/osi/quipu/RCS/net_schedule.c,v 6.0 89/03/18 23:41:43 mrose Rel $
 *
 *
 * $Log:	net_schedule.c,v $
 * Revision 6.0  89/03/18  23:41:43  mrose
 * Release 5.0
 * 
 */

/*
 *                                NOTICE
 *
 *    Acquisition, use, and distribution of this module and related
 *    materials are subject to the restrictions of a license agreement.
 *    Consult the Preface in the User's Manual for the full terms of
 *    this agreement.
 *
 */


#include "quipu/util.h"
#include "quipu/connection.h"

net_send_open_response(act)
register        struct activity * act;
{
    switch(act->act_resp.resp_type)
    {
    case RESP_TYPE_RET:
	if(act->act_resp.ret_type == RET_TYPE_RES)
	    net_send_ro_result(act);
	else
	    net_send_ro_error(act);
    break;
    case RESP_TYPE_REJ:
	net_send_ro_ureject(act->act_conn->cn_ad, &(act->act_id), act->act_resp.resp_rej);
    break;
    }
    task_extract(act);
}