//Editor-Info: -*- C++ -*-
//
//Subject: TOVE-project / SAAL
//
//File: unisaalrelay.h
//
//Version: $Revision: 1.2 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/10/20 06:08:07 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications and Multimedia
//
//Author:
//      Juhana Räsänen
//
//Description:
//	Pseudo protocol for connecting two UNI SAAL users together
//      without an actual working SAAL layer.
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 
//

#ifndef __UNISAALRELAY_H__
#define __UNISAALRELAY_H__

#include "pf/types.h"
#include "pf/protocol.h"

class pfFrame;

class uniSaalRelay : public pfProtocol
{
    public:
        uniSaalRelay(void);
        virtual ~uniSaalRelay(void);

        // Methods for sending primitives to the UNI-SAAL user
        void sendUaalESTABLISHind(bool toA_);
        void sendUaalESTABLISHconf(bool toA_);
        void sendUaalRELEASEind(bool toA_);
        void sendUaalRELEASEconf(bool toA_);
        void sendUaalDATAind(const pfFrame &mu_, bool toA_);
        void sendUaalUNITDATAind(const pfFrame &mu_, bool toA_);
};

#endif // __UNISAALRELAY_H__

