//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / SW
//
//File: swfcf.cpp
//
//Version: $Revision: 1.10 $
//
//State: $State: Exp $
//
//Date: $Date: 1999/02/25 09:32:59 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Timo Pärnänen
//
//Description:
//      See corresponding header file.
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 

#include "pf/error.h"
#include "swfcf.h"

swFCF :: swFCF(void)
{
    return;
}

swFCF :: ~swFCF(void)
{
    return;
}

void swFCF :: init(void)
{
    return;
}

// swFabricCallback interface

void swFCF :: success(pfUlong identifier_)
{
    (void)identifier_;
    return;
}

void swFCF :: failure(pfUlong identifier_, pfUlong cause_)
{
    (void)identifier_;
    (void)cause_;
    return;
}

// swConnectIface

pfUlong swFCF :: connect(ieConnectionIdentifier *input_,
                         ieConnectionIdentifier *output_,
                         bool bidirection_,
                         swFabricCallback *callback_)
{
    (void)input_;
    (void)output_;
    (void)bidirection_;
    (void)callback_;
    THROW_UNSUPPORTED_COMBINATION_OF_TRAFFIC_PARAMETERS;
    return 0;
}

void swFCF :: connect(ieConnectionIdentifier *input_,
                      ieConnectionIdentifier *output_,
                      bool bidirection_,
                      pfConduit &callback_)
{
    (void)input_;
    (void)output_;
    (void)bidirection_;
    (void)callback_;
    THROW_UNSUPPORTED_COMBINATION_OF_TRAFFIC_PARAMETERS;
    return;
}

void swFCF :: disconnect(ieConnectionIdentifier *input_,
                         ieConnectionIdentifier *output_,
                         bool bidirection_)
{
    (void)input_;
    (void)output_;
    (void)bidirection_;    
    return;
}

// swEventIf

void swFCF :: fabricReady(void)
{
    return;
}

void swFCF :: fabricUnavailable(void)
{
    return;
}

void swFCF :: fabricDisconnected(void)
{
    return;
}

void swFCF :: portUp(pfUlong port_)
{
    (void)port_;
    return;
}

void swFCF :: portDown(pfUlong port_)
{
    (void)port_;
    return;
}

void swFCF :: invalidVPIVCI(pfUlong port_,
                            pfUlong VPI_,
                            pfUlong VCI_)
{
    (void)port_;
    (void)VPI_;
    (void)VCI_;
    return;
}

void swFCF :: newPort(pfUlong port_)
{
    (void)port_;
    return;
}

void swFCF :: deadPort(pfUlong port_)
{
    (void)port_;
    return;
}
