diff options
author | crodrigu <crodrigu@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-04-02 18:34:05 +0000 |
---|---|---|
committer | crodrigu <crodrigu@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-04-02 18:34:05 +0000 |
commit | 36076df0082209056766cdf77d1840812beab0ee (patch) | |
tree | 914d4eb26abcc305be688234af489ae4cbf43281 /ace/QoS | |
parent | 617da56e94e7062efe665f59475f12b67d27442b (diff) | |
download | ATCD-36076df0082209056766cdf77d1840812beab0ee.tar.gz |
ChangeLogTag: Mon Apr 2 14:23:31 2001 Craig Rodrigues <crodrigu@bbn.com>
Diffstat (limited to 'ace/QoS')
-rw-r--r-- | ace/QoS/README | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/ace/QoS/README b/ace/QoS/README new file mode 100644 index 00000000000..4415bf1862b --- /dev/null +++ b/ace/QoS/README @@ -0,0 +1,55 @@ +$Id$ + +ACE QoS API (AQoSA) +=================== + +This directory contains the implementation for the ACE QoS API (AQoSA). + +BUILD REQUIREMENTS +================== +WIN2K : + +AQoSA makes use of the GQOS API under Windows 2000. The minimum +requirements are: + +1. June98 Platform SDK or later. +2. Link with ws2_32.lib + +More information about GQOS is available from the MSDN website: +http://msdn.microsoft.com/msdn-files/026/002/258/Search.asp + +------------------------------------------------------------------------------- + +UNIX : + +AQoSA makes use of the RSVP API (RAPI) under UNIX. +RAPI can be obtained from: ftp://ftp.isi.edu/rsvp/release/. +rsvpd.rel4.2a4-1 may require patches in order to compile +under current versions of Linux. Contact Craig Rodrigues <crodrigu@bbn.com> +to obtain these patches. + +The following lines should be added to your platform_macros.GNU file +before building AQoSA: + +PLATFORM_RAPI_CPPFLAGS += -I[path to RAPI header files] +PLATFORM_RAPI_LIBS += -lrsvp +PLATFORM_RAPI_LDFLAGS += -L[path to RAPI library files] + +1. Compile AQoSA with + + make rapi=1 + +More information about RAPI can be found at: + +http://www.opengroup.org/onlinepubs/9619099/toc.htm +http://www.cs.wustl.edu/~vishal/qos.html +http://www.sun.com/software/bandwidth/rsvp/docs/ +http://www.tru64unix.compaq.com/faqs/publications/base_doc/DOCUMENTATION/V51_HTML/ARH9UCTE/TOC.HTM#RSVPCHXX + +------------------------------------------------------------------------------- + +TEST +==== + +The test for AQoSA is located in $ACE_ROOT/examples/QOS + |