//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / CPCS protocol
//
//File: cpcs.h
//
//Version: $Revision: 1.5 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/07/23 13:31:35 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications and Multimedia
//
//Author:
//      Juhana Räsänen
//
//Description:
//      Type definitions for CPCS protocol.
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 
//

#ifndef __CPCS_H__
#define __CPCS_H__

#include "pf/types.h"

// CPCS primitive parameters "Loss Priority" and "Congestion Indication"
// as defined in I.363 Table 6-3/I.363 (page 43)
const pfUlong CPCS_LP_HIGH = 0;
const pfUlong CPCS_LP_LOW = 1;

const pfUlong CPCS_NO_CONGESTION = 0;
const pfUlong CPCS_CONGESTION = 1;


// CPCS maximum SDU length as defined in I.363 (page 46)
const int CPCS_MAX_SDU_SIZE = 65536;

#endif // __CPCS_H__

