//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project
//
//File: unistate_n8.h
//
//Version: $Revision: 1.8 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/08/05 05:22:08 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Jari Pusa
//
//Description:
//      State Connect Request (N8)
//
//Copyright:
//
//
//Licence:
//
//
//History: 

#ifndef __UNI_UNISTATE_N8_H__
#define __UNI_UNISTATE_N8_H__

#include "unistate_n.h"

//
// Class: uniNetworkConnectRequest
//
// Description:
//      Implements Connect Request state of the network side.
//

class uniNetworkConnectRequest : public uniNetworkState
{
    public:
        static uniNetworkConnectRequest *instance(void);

        virtual void sigSETUP_COMPLETEreqAct(sigSETUP_COMPLETEreq *message_,
                                             pfProtocol *protocol_);
        
    protected:
        uniNetworkConnectRequest(void);
        virtual ~uniNetworkConnectRequest(void);

    private:
        static uniNetworkConnectRequest *_only;
};

#endif // __UNI_UNISTATE_N8_H__
