home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / viscobv6.zip / vac22os2 / ibmcobol / samples / hostdata / config.dfm next >
Text File  |  1997-03-27  |  5KB  |  77 lines

  1. ; ****************************************************************************
  2. ; *      Copyright (c) IBM Corporation 1993  -  All Rights Reserved          *
  3. ; *                                                                          *
  4. ; * DFM/2 (program no. 5648-020)                                             *
  5. ; * Version: 1.0                                                             *
  6. ; * Release: 1.0                                                             *
  7. ; * Level:   0.0                                                             *
  8. ; *                                                                          *
  9. ; ****************************************************************************
  10. ; *                                                                          *
  11. ; *             IBM Distributed FileManager (DFM/2) for OS/2                 *
  12. ; *             ============================================                 *
  13. ; *                                                                          *
  14. ; *                     SAMPLE CONFIGURATION FILE                            *
  15. ; *                                                                          *
  16.  
  17. ; Definition of an MVS/ESA system as target:
  18.        DFM_TARGET (
  19.              remote_lu(ST11APPC)
  20.              description(The MVS/ESA System)
  21.              conversation(HOLD)
  22.              max_send_limit(4096)
  23.              userid (tsouserid)
  24. ;            password (XXXXXXX)
  25. ;             dcinclude(%ehndir%\cachinex\dcincl2.dci)
  26.              )
  27.  
  28. ; ****************************************************************************
  29. ; * Define the local LU alias as defined for the OS/2 ES Communications Mgr. *
  30. ; ****************************************************************************
  31.        LOCAL_LU (STB5761I)
  32.  
  33. ; ****************************************************************************
  34. ; * Define the Mode Name                                                     *
  35. ; ****************************************************************************
  36.        MODE_NAME (QPCSUPP)
  37.  
  38. ; ****************************************************************************
  39. ; * Define the Default DFM Target System                                     *
  40. ; ****************************************************************************
  41.        DEFAULT_DFM_TARGET(ST11APPC)
  42.  
  43. ; ****************************************************************************
  44. ; * Define the default CCSID (Coded-Character-Set-Id, up to 5 decimal digits)*
  45. ; * for all accessed targets:                                                *
  46. ; * Some examples for CCSIDs (code pages)                                    *
  47. ; * (CEPC means EBCDIC format, PC Data means ASCII format):                  *
  48. ; * 500 = CEPC: International Latin-1, B, CH, Can(AS/400)                    *
  49. ; *             (default if no specification given)                          *
  50. ; * 437 = PC Data: USA                                                       *
  51. ; * 850 = PC Data: Latin Alphabet Number 1, Latin-1 Countries                *
  52. ; ****************************************************************************
  53.        DEFAULT_CCSID(00500)
  54.  
  55. ; ****************************************************************************
  56. ; * Define the shared memory size to be available for DFM/2 tracing.         *
  57. ; * Trace buffer memory to be specified in kilobytes:                        *
  58. ; *  Minimum value:   10 KB                                                  *
  59. ; *  Maximum value: 1000 KB                                                  *
  60. ; ****************************************************************************
  61. ;       TRACE_BUFFER(64)
  62.  
  63. ; ****************************************************************************
  64. ; * Define space available for DFM/2 caching.                                *
  65. ; * The size (maximum space used) is specified in kilobytes,                 *
  66. ; * default value is 2000 KB.                                                *
  67. ; * The default directory is %ehndir%\cache.                                 *
  68. ; * Make sure the directory specified exists and does not contain any files  *
  69. ; * you want to keep, as DFM/2 may delete all files in that directory.       *
  70. ; ****************************************************************************
  71. ;       DFM_CACHE (
  72. ;             cache_disk_size(1000)
  73. ;             cache_directory(%ehndir%\cache)
  74. ;             )
  75.  
  76. ; ***** end of file **********************************************************
  77.