//Editor-Info: -*- C++ -*-
//
//Subject: TOVE-project / SAAL
//
//File: unisaalrelaystate.h
//
//Version: $Revision: 1.1 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/08/06 12:44:24 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications and Multimedia
//
//Author:
//      Juhana Räsänen
//
//Description:
//      Contains definition of the state for the pseudo UNI SAAL
//      protocol for connection two SAAL users together. Maps
//      request primitives to indication primitives and sends
//      them to the other user.
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History:
//

#ifndef __UNISAALRELAYSTATE_H__
#define __UNISAALRELAYSTATE_H__

#include "pf/state.h"
#include "iface/uaalif/uaaldownprimitives.h"

class uniSaalRelayState : public pfState, public uaalDownInputs
{
    public:
// Actions for incoming (U)AAL-primitives from SAAL user
        void uaalESTABLISHreqAct(
            uaalESTABLISHreq *messenger_,
            pfProtocol *protocol_);
        void uaalRELEASEreqAct(
            uaalRELEASEreq *messenger_,
            pfProtocol *protocol_);
        void uaalDATAreqAct(
            uaalDATAreq *messenger_,
            pfProtocol *protocol_);
        void uaalUNITDATAreqAct(
            uaalUNITDATAreq *messenger_,
            pfProtocol *protocol_);
};

#endif // __UNISAALRELAYSTATE_H__

