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 o

⟦0ad3b6df4⟧ TextFile

    Length: 1490 (0x5d2)
    Types: TextFile
    Names: »oper_preject.c«

Derivation

└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0
    └─⟦35176feda⟧ »EurOpenD22/isode/isode-6.tar.Z« 
        └─⟦de7628f85⟧ 
            └─⟦this⟧ »isode-6.0/quipu/oper_preject.c« 

TextFile

/* oper_preject.c - deal with preject of an operation */

#ifndef	lint
static char *rcsid = "$Header: /f/osi/quipu/RCS/oper_preject.c,v 7.0 89/11/23 22:17:53 mrose Rel $";
#endif

/* 
 * $Header: /f/osi/quipu/RCS/oper_preject.c,v 7.0 89/11/23 22:17:53 mrose Rel $
 *
 *
 * $Log:	oper_preject.c,v $
 * Revision 7.0  89/11/23  22:17:53  mrose
 * Release 6.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.
 *
 */


/* LINTLIBRARY */

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

extern	LLog	* log_dsap;

oper_preject(conn, rop)
Conn            conn;
struct RoSAPpreject     *rop;
{
    DLOG(log_dsap, LLOG_TRACE, ("oper_preject"));

    DLOG(log_dsap, LLOG_NOTICE, ("RO-P-REJECT.INDICATION : %s", 
      RoErrString(rop->rop_reason)));
    if(ROS_FATAL(rop->rop_reason) || (rop->rop_reason == ROS_PARAMETER))
    {
	conn->cn_state = CN_FAILED;
    }
    else
    {
	conn->cn_state = CN_FAILED;
    }

/*
    {
	struct oper_act *       on;

	for(on=conn->cn_operlist; on!=NULLOPER; on=on->on_next_conn)
	    if(on->on_id == rop->rop_id)
		break;

	if(on == NULLOPER)
	{
	    LLOG(log_dsap,LLOG_EXCEPTIONS,( "Unlocatable P-REJECT.INDICATION : %d",
	      rop->rop_reason));
	}
	else
	{
	    oper_fail_wakeup(on);
	}
    }
*/
    conn_extract(conn);
}