serviceflow.cc
上传用户:hzie11
上传日期:2013-10-07
资源大小:1487k
文件大小:1k
源码类别:

网络

开发平台:

C/C++

  1. /* This software was developed at the National Institute of Standards and
  2.  * Technology by employees of the Federal Government in the course of
  3.  * their official duties. Pursuant to title 17 Section 105 of the United
  4.  * States Code this software is not subject to copyright protection and
  5.  * is in the public domain.
  6.  * NIST assumes no responsibility whatsoever for its use by other parties,
  7.  * and makes no guarantees, expressed or implied, about its quality,
  8.  * reliability, or any other characteristic.
  9.  * <BR>
  10.  * We would appreciate acknowledgement if the software is used.
  11.  * <BR>
  12.  * NIST ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION AND
  13.  * DISCLAIM ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER RESULTING
  14.  * FROM THE USE OF THIS SOFTWARE.
  15.  * </PRE></P>
  16.  * @author  rouil
  17.  */
  18. #include "serviceflow.h"
  19. /**
  20.  * Create a flow with the given parameter
  21.  */
  22. static int FlowIndex = 0;
  23. ServiceFlow::ServiceFlow (SchedulingType_t scheduling, ServiceFlowQoS *qos) {
  24.   id_ = UNASSIGNED_FLOW_ID; //assign and increment flow id
  25.   scheduling_ = scheduling;
  26.   qos_ = qos;
  27. }
  28. /**
  29.  * Pick the next available ID. Should be called by a BS to assign a unique ID
  30.  */
  31. void ServiceFlow::pickID ()
  32. {
  33.   id_ = FlowIndex++;
  34. }
  35. /**
  36.  * Assign an ID to the service flow
  37.  * @param id The ID to set
  38.  */
  39. void ServiceFlow::setID (int id)
  40. {
  41.   id_ = id;
  42. }