home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / bos225b2.zip / pipedef.xml < prev    next >
Text File  |  1999-08-26  |  2KB  |  67 lines

  1. <!-----------------------------------------------------------------------
  2.     pipedef.xml - Pipe (throttle) definitions
  3.  
  4.     Written: 99/08/23   Xitami team xitami@imatix.com
  5.     Revised: 99/08/23   Xitami team xitami@imatix.com
  6.  
  7.     How to use this file:
  8.  
  9.     The XML structure is:
  10.         DATA 
  11.           PIPE
  12.             INSTANCE
  13.  
  14.     The pipe definition is applied to zero or more 'instances', which
  15.     are the throttle pipes that the application can use.  A pipe with
  16.     no instances is not used.
  17.     
  18.     PIPE has these attributes:
  19.         NAME       Name of pipe
  20.         RATE       Input/output rate, bytes per second           
  21.         OUTRATE    Output rate, specified seperately
  22.         INRATE     Input rate, specified seperately
  23.         UNITS      Rate multiplication factor (1)
  24.     INSTANCE has these attributes:
  25.         NAME       Instance name
  26.     --------------------------------------------------------------------->
  27. <DATA>
  28.  
  29. <PIPE NAME = "4k"    RATE = "4"     UNITS = "1024" />
  30. <PIPE NAME = "8k"    RATE = "8"     UNITS = "1024" />
  31. <PIPE NAME = "16k"   RATE = "16"    UNITS = "1024" />
  32. <PIPE NAME = "32k"   RATE = "32"    UNITS = "1024"  >
  33.     <INSTANCE NAME = "32k pipe A" />
  34.     <INSTANCE NAME = "32k pipe B" />
  35. </PIPE>
  36. <PIPE NAME = "64k"   RATE = "64"    UNITS = "1024"  >
  37.     <INSTANCE NAME = "64k pipe A" />
  38.     <INSTANCE NAME = "64k pipe B" />
  39. </PIPE>
  40. <PIPE NAME = "128k"  RATE = "128"   UNITS = "1024"  >
  41.     <INSTANCE NAME = "128k pipe A" />
  42.     <INSTANCE NAME = "128k pipe B" />
  43. </PIPE>
  44. <PIPE NAME = "256k"  RATE = "256"   UNITS = "1024"  >
  45.     <INSTANCE NAME = "256k pipe A" />
  46.     <INSTANCE NAME = "256k pipe B" />
  47. </PIPE>
  48. <PIPE NAME = "512k"  RATE = "512"   UNITS = "1024"  >
  49.     <INSTANCE NAME = "512k pipe A" />
  50.     <INSTANCE NAME = "512k pipe B" />
  51. </PIPE>
  52. <PIPE NAME = "1M"    RATE = "1024"  UNITS = "1024"  >
  53.     <INSTANCE NAME = "1M pipe A" />
  54. </PIPE>
  55. <PIPE NAME = "2M"    RATE = "2048"  UNITS = "1024"  >
  56.     <INSTANCE NAME = "2M pipe A" />
  57. </PIPE>
  58. <PIPE NAME = "4M"    RATE = "4096"  UNITS = "1024" />
  59. <PIPE NAME = "8M"    RATE = "8192"  UNITS = "1024" />
  60.  
  61. <PIPE NAME = "ADSL"  INRATE = "256"  OUTRATE = "64" UNITS = "1024"  >
  62.     <INSTANCE NAME = "ADSL pipe A" />
  63.     <INSTANCE NAME = "ADSL pipe B" />
  64. </PIPE>
  65.  
  66. </DATA>
  67.