summaryrefslogtreecommitdiff
path: root/ace/ATM_QoS.h
blob: 57f3b257c6df7206acf461fd2c0c1d9bf389496d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/* -*- C++ -*- */
// $Id$

 
// ============================================================================
//
// = LIBRARY
//    ace
//
// = FILENAME
//    ATM_QoS.h
//
// = AUTHOR
//    Joe Hoffert
//
// ============================================================================

#ifndef ACE_ATM_QoS_H
#define ACE_ATM_QoS_H

#include "ace/ACE.h"

#if !defined(ACE_LACKS_PRAGMA_ONCE)
#pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

#if defined (ACE_HAS_ATM)

#if defined (ACE_HAS_FORE_ATM_WS2)
// just map to WS2 GQOS struct
typedef QOS ATM_QoS;
#elif defined (ACE_HAS_FORE_ATM_XTI)
// typedef enum {
//   BEST_EFFORT,
//   CONTROLLED_LOAD,
//   GUARANTEED
// } SERVICETYPE;

// typedef struct _flowspec {
//   int TokeRate;
//   int TokenBucketSize;
//   int PeakBandwidth;
//   int Latency;
//   int DelayVariation;
//   SERVICETYPE ServiceType;
//   int MaxSduSize;
//   int MinimumPolicedSize;
// } FLOWSPEC;

// typedef struct _BUF {
//   ulong len;
//   char *buf;
// } BUF;

// typedef struct _QualityOfService {
//   FLOWSPEC SendingFlowspec;
//   FLOWSPEC ReceivingFlowspec;
//   BUF ProviderSpecific;
// } ATM_QoS;
typedef struct netbuf ATM_QoS;
#else
typedef int ATM_QoS;
#endif /* ACE_HAS_FORE_ATM_WS2 */

class ACE_Export ACE_ATM_QoS
{
  // = TITLE
  //	Define the QoS parameters for ATM
  //
  // = DESCRIPTION
  //     This class wraps up QoS parameters for both ATM/XTI and
  //     ATM/WinSock2 to make the mechanism for the ATM protocol
  //     transparent.
public:
  // Constants used for ATM options
  static const long LINE_RATE;
  static const int OPT_FLAGS_CPID;
  static const int OPT_FLAGS_PMP;
  static const int DEFAULT_SELECTOR;

  // = Initializattion and termination methods.
  ACE_ATM_QoS ();
  // Default constructor

  ~ACE_ATM_QoS ();

  void set_rate (ACE_HANDLE,
                 int,
                 int);
  // set the rate

  void set_cbr_rate (int);
  // set CBR rate

  ATM_QoS get_qos (void);
  // get ATM_QoS struct

  void dump (void) const;
  // Dump the state of an object.

  ACE_ALLOC_HOOK_DECLARE;
  // Declare the dynamic allocation hooks.

protected:
  char* construct_options(ACE_HANDLE,
                          int,
                          int,
                          long*);
  // Construct QoS options

private:
  ATM_QoS qos_;
};

#if defined (__ACE_INLINE__)
#include "ace/ATM_QoS.i"
#endif /* __ACE_INLINE__ */

#endif /* ACE_HAS_ATM */
#endif /* ACE_ATM_QoS_H */